The _________ method in Promise chaining is used to catch any errors that occur during the execution of the promise.

  • reject()
  • catch()
  • handle()
  • error()
The correct method is catch(). It is used in promise chaining to handle any errors that may occur during the execution of the promise. It is a best practice to include a catch() block to handle errors in promise chains.
Add your answer
Loading...

Leave a comment

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