When a Promise is rejected, which method is typically used to handle the rejection?

  • catch
  • finally
  • reject
  • onReject
In the context of Promises, the catch method is commonly used to handle the rejection of a Promise. It allows you to specify a callback function that will be called if the Promise is rejected, providing a 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 *