Skip to content

Instantly share code, notes, and snippets.

@tuliofaria
Created May 14, 2018 10:57
Show Gist options
  • Save tuliofaria/2ec55cdd5b39595d5b535fa0fc4e5e4f to your computer and use it in GitHub Desktop.
Save tuliofaria/2ec55cdd5b39595d5b535fa0fc4e5e4f to your computer and use it in GitHub Desktop.
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