Skip to content

Instantly share code, notes, and snippets.

@danharper
Created March 2, 2015 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danharper/712acad1b2b2468ace55 to your computer and use it in GitHub Desktop.
Save danharper/712acad1b2b2468ace55 to your computer and use it in GitHub Desktop.
function sleep(ms = 0) {
return new Promise(r => setTimeout(r, ms))
}
async function run() {
await sleep(2000)
console.log('2s later')
}
run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment