supasympa
8/11/2017 - 9:25 PM

The simplest Javascript async / await I could come up with

The simplest Javascript async / await I could come up with

const main = async () => console.log(await Promise.resolve("Hello World!"));

main();