Skip to content

Instantly share code, notes, and snippets.

@givanse
Created April 5, 2016 18:42
Show Gist options
  • Save givanse/decaff740f484a3daaa8b4031b8231a3 to your computer and use it in GitHub Desktop.
Save givanse/decaff740f484a3daaa8b4031b8231a3 to your computer and use it in GitHub Desktop.
JS Sleep
function sleep(milliseconds) {
var start = new Date().getTime();
for (var i = 0; i < 1e7; i++) {
if ((new Date().getTime() - start) > milliseconds){
break;
}
}
}
sleep(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment