Promises without `.then`

Viewed 11583

Is there any downside to using a promise with only .catch section, but without .then at all?

I'm asking about the cases where the resolution result is not needed, only error handling.

Is this a good pattern to rely on .catch only and skip .then?

Or is it something that depends on which promise implementation it is?

1 Answers
Related