Skip to content

Instantly share code, notes, and snippets.

@thewhodidthis
Created March 10, 2021 14:49
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 thewhodidthis/b47b1a2675a1b51dbf392a4b7663e6c2 to your computer and use it in GitHub Desktop.
Save thewhodidthis/b47b1a2675a1b51dbf392a4b7663e6c2 to your computer and use it in GitHub Desktop.
/*
const run = async () => {
await sleep(1000)
console.log("One")
await sleep(1000)
console.log("Two")
}
run()
*/
const sleep = (delay) => new Promise((resolve) => setTimeout(resolve, delay))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment