Skip to content

Instantly share code, notes, and snippets.

@ozrabal
Created February 18, 2019 09:02
Show Gist options
  • Select an option

  • Save ozrabal/6901de19f770cc37d5fac30e9da852e8 to your computer and use it in GitHub Desktop.

Select an option

Save ozrabal/6901de19f770cc37d5fac30e9da852e8 to your computer and use it in GitHub Desktop.
const sleep = (milliseconds) => {
return new Promise(resolve => setTimeout(resolve, milliseconds))
}
await sleep(2000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment