What happens if an error is thrown inside a .then() block in Promise chaining?

  • It is automatically caught by the nearest .catch() block in the chain.
  • The program crashes with an unhandled exception.
  • The error is ignored, and the program continues execution.
  • It triggers the global error handler.
If an error occurs inside a .then() block, it will be caught by the nearest .catch() block in the promise chain, preventing it from propagating further and allowing proper error handling.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *