Created
March 27, 2017 23:00
-
-
Save igorshubovych/5971e98b444013371cc7a94f9b02339a to your computer and use it in GitHub Desktop.
Test async/await in browser
This file contains hidden or 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 function test () { | |
return 'Testing async functions' | |
} | |
test().then(val => console.log(val)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment