What are the implications of using await in top-level code (outside of any function)?

  • Causes a syntax error
  • Works as expected
  • Results in unhandled promise rejection
  • Has no effect
Using await outside of any function (at the top level) is not allowed and results in an unhandled promise rejection. The top-level code doesn't have the necessary structure to handle asynchronous operations using await. To use await, it should be inside an async function. Otherwise, it leads to unexpected behavior and unhandled promise rejections.
Add your answer
Loading...

Leave a comment

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