Created
May 14, 2018 10:57
-
-
Save tuliofaria/2ec55cdd5b39595d5b535fa0fc4e5e4f to your computer and use it in GitHub Desktop.
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
const sleep = time => new Promise(resolve => setTimeout(resolve, time)) | |
const teste = async() => { | |
console.log('ola') | |
await sleep(1000) | |
console.log('depois do sleep') | |
} | |
teste() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment