Skip to content

Instantly share code, notes, and snippets.

@jirkapenzes
Created August 8, 2014 23:01
Show Gist options
  • Select an option

  • Save jirkapenzes/cc77ade7bf21fb79a1a3 to your computer and use it in GitHub Desktop.

Select an option

Save jirkapenzes/cc77ade7bf21fb79a1a3 to your computer and use it in GitHub Desktop.
Javascript sleep
function sleep(millis)
{
var startDate = new Date();
var currentDate = null;
do {
currentDate = new Date();
}
while(currentDate - startDate < millis);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment