Skip to content

Instantly share code, notes, and snippets.

@integrii
Created September 23, 2017 22:58
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 integrii/9f17b3c226edc8c75455aeb591e3bea9 to your computer and use it in GitHub Desktop.
Save integrii/9f17b3c226edc8c75455aeb591e3bea9 to your computer and use it in GitHub Desktop.
Sleep in javascript
// https://stackoverflow.com/questions/14226803/javascript-wait-5-seconds-before-executing-next-line
function wait(ms){
var start = new Date().getTime();
var end = start;
while(end < start + ms) {
end = new Date().getTime();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment