A rejected promise will skip all subsequent .then() methods until a _________ method is found.

  • finally()
  • catch()
  • reject()
  • resolve()
The correct method is catch(). When a Promise is rejected, it will skip all subsequent then() methods and look for a catch() method in the chain to handle the rejection. The catch() method is used to specify what to do in case of a rejected Promise.
Add your answer
Loading...

Leave a comment

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