Can async functions be used as constructors for new objects?

  • Yes
  • No
  • Only in specific JavaScript engines
  • Only with the use of decorators
No, async functions cannot be used as constructors for new objects. Async functions always return a Promise, and using them with the new keyword will result in a TypeError. Constructors should return objects, not Promises.
Add your answer
Loading...

Leave a comment

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