Can await be used inside a regular (non-async) function?

  • No, it can only be used in async functions
  • Yes, it can be used to make any function asynchronous
  • Yes, but it will result in a runtime error
  • No, it is only applicable in arrow functions
The await keyword can only be used inside functions marked with the async keyword. Attempting to use await in a regular function will result in a syntax error.
Add your answer
Loading...

Leave a comment

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