Skip to content

Instantly share code, notes, and snippets.

@daubattu
Created December 6, 2019 05:10
Show Gist options
  • Save daubattu/eac1e25754fe82f318615a652408c0d4 to your computer and use it in GitHub Desktop.
Save daubattu/eac1e25754fe82f318615a652408c0d4 to your computer and use it in GitHub Desktop.
// Written as of ES2019
await Promise.resolve(console.log('πŸŽ‰')); // β†’ SyntaxError: await is only valid in async function
(async function() {
await Promise.resolve(console.log('πŸŽ‰')); // β†’ πŸŽ‰
}());
// Top level await
await Promise.resolve(console.log('πŸŽ‰')); // β†’ πŸŽ‰
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment