SyntaxFix
Write A Post
Hire A Developer
Questions
Immediately Invoked Async Arrow Function:
(async () => { console.log(await asyncFunction()); })();
Immediately Invoked Async Function Expression:
(async function () { console.log(await asyncFunction()); })();