Skip to content

Instantly share code, notes, and snippets.

@mugyu
Last active April 27, 2019 02:36
Show Gist options
  • Save mugyu/606511b4e44f487e718973b6893b3fe7 to your computer and use it in GitHub Desktop.
Save mugyu/606511b4e44f487e718973b6893b3fe7 to your computer and use it in GitHub Desktop.
Simply JavaScript Sleep function
// JavaScript simple sleep function
// usage: await sleep(milliseconds)
function sleep(milliseconds) {
return new Promise(resolve => setTimeout(resolve, milliseconds));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment