Skip to content

Instantly share code, notes, and snippets.

@igorshubovych
Created March 27, 2017 23:00
Show Gist options
  • Save igorshubovych/5971e98b444013371cc7a94f9b02339a to your computer and use it in GitHub Desktop.
Save igorshubovych/5971e98b444013371cc7a94f9b02339a to your computer and use it in GitHub Desktop.
Test async/await in browser
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