In a Promise chain, where should you place a .catch() method for centralized error handling?

  • At the beginning of the Promise chain.
  • At the end of the Promise chain.
  • It can be placed anywhere within the Promise chain.
  • Immediately after the last then() block in the Promise chain.
To achieve centralized error handling in a Promise chain, the .catch() method should be placed immediately after the last then() block. This ensures that any error thrown at any stage of the Promise chain is caught centrally, providing a clean and organized way to handle errors in asynchronous operations.
Add your answer
Loading...

Leave a comment

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