When an async function throws an error and it is not caught, it results in a rejected __________.

  • Promise
  • Error
  • Exception
  • Rejection
When an async function throws an unhandled error, it results in a rejected Promise. The rejection carries the error information, and if not caught using a catch block or try...catch, it can lead to unhandled promise rejections. Understanding this behavior is essential for effective error handling in asynchronous code. Properly handling promise rejections ensures that errors are appropriately addressed, preventing unintended consequences in the application.
Add your answer
Loading...

Leave a comment

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