Last active
March 31, 2018 22:14
-
-
Save itaditya/72664a955f01db5c0cdd102acbde6beb to your computer and use it in GitHub Desktop.
async function without await
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(async () => { | |
const value = doSomeAsyncTask() | |
console.log(value) // an unresolved promise | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment