What happens if you await a function that does not return a Promise?

  • It throws a syntax error
  • The program crashes
  • It works as expected
  • It returns a rejected Promise
If you await a function that does not return a Promise, it will still work as expected. JavaScript automatically wraps the non-Promise value in a resolved Promise, allowing seamless integration of async/await with traditional synchronous functions.
Add your answer
Loading...

Leave a comment

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