Skip to content

Instantly share code, notes, and snippets.

@itaditya
Created March 31, 2018 22:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itaditya/0a485881fd21a65a9f85dde7b5386978 to your computer and use it in GitHub Desktop.
Save itaditya/0a485881fd21a65a9f85dde7b5386978 to your computer and use it in GitHub Desktop.
async function with await
(async () => {
const promise = doSomeAsyncTask()
const value = await promise
console.log(value) // the actual value
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment