Skip to content

Instantly share code, notes, and snippets.

@valarpirai
Created February 16, 2018 03:11
Show Gist options
  • Save valarpirai/f4f9a99489965048893c10794c38886e to your computer and use it in GitHub Desktop.
Save valarpirai/f4f9a99489965048893c10794c38886e to your computer and use it in GitHub Desktop.
Javascript Sleep function. (Blocks page interaction)
function sleep(milliseconds) {
var start = new Date().getTime();
for (;(new Date().getTime() - start) < milliseconds;) {
}
console.log("sleep finished")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment