Which method is used to catch errors in a Promise?

  • catchError
  • errorHandler
  • catch
  • handleError
The correct method to catch errors in a Promise is the catch method. It is used to handle both synchronous and asynchronous errors that may occur during the execution of the Promise. By chaining the catch method to a Promise, you can specify a callback function to handle the errors and take appropriate actions.
Add your answer
Loading...

Leave a comment

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