In an async function, what happens to unhandled exceptions?

  • They are automatically caught by the global error handler
  • They cause the program to crash immediately
  • They propagate to the nearest catch block
  • They result in an unhandled promise rejection
Unhandled exceptions in an async function result in unhandled promise rejections. This can lead to unexpected behavior or crashes if not properly addressed. It's crucial to handle errors appropriately in async functions to ensure robust and error-resistant code.
Add your answer
Loading...

Leave a comment

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