Skip to content

Instantly share code, notes, and snippets.

@gchavez2
Last active August 7, 2018 03:15
Show Gist options
  • Save gchavez2/24150d9258317c12c527827223e30802 to your computer and use it in GitHub Desktop.
Save gchavez2/24150d9258317c12c527827223e30802 to your computer and use it in GitHub Desktop.
// Implementation
function sleep(ms){
return new Promise(resolve=>{
setTimeout(resolve,ms)
})
}
// Usage. Sleep two seconds
await sleep(2000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment