Which method is used to handle errors in a JavaScript Promise?

  • catch()
  • reject()
  • error()
  • handleError()
The catch() method is used to handle errors in a JavaScript Promise. It allows you to specify a callback function that will be executed if the promise is rejected. Option A is correct because it represents the correct method for handling errors in promises.
Add your answer
Loading...

Leave a comment

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