Skip to content

Instantly share code, notes, and snippets.

@fgo
Created June 19, 2017 12:27
Show Gist options
  • Select an option

  • Save fgo/74a85f94e5690b6acbe96206649b6e26 to your computer and use it in GitHub Desktop.

Select an option

Save fgo/74a85f94e5690b6acbe96206649b6e26 to your computer and use it in GitHub Desktop.
Go to sleep JavaScript
// Sleep function
// Usage: sleep(42000); // Sleep for 42 seconds
function sleep(ms) {
var start = new Date().getTime();
for (var i = 0; i < 1e7; i++) {
if ((new Date().getTime() - start) > ms){
break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment