We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Hi, what possibilities exist to be able to use the await operator without the use of async?, as it is currently done in javascript.
Example in actual javascript
const prom = new Promise((r)=> {r('Running whitout without async 🏄 ')}); await prom // Running whitout without async 🏄
Regards!