A try/catch block inside an async function catches both synchronous and ________ errors.

  • Promise
  • Callback
  • Asynchronous
  • Await
A try/catch block inside an async function can catch both synchronous errors (those that occur in the synchronous part of the code) and asynchronous errors (those that occur in asynchronous operations like Promises). This ensures robust error handling in async functions.
Add your answer
Loading...

Leave a comment

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