Skip to content

Instantly share code, notes, and snippets.

@gtrufitt
Last active March 16, 2017 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gtrufitt/89372b0ae455eb9d0682e6516eebbd76 to your computer and use it in GitHub Desktop.
Save gtrufitt/89372b0ae455eb9d0682e6516eebbd76 to your computer and use it in GitHub Desktop.
Test setTimouet
function sleep(milliSeconds){
var startTime = new Date().getTime(); // get the current time
while (new Date().getTime() < startTime + milliSeconds); // hog cpu until time's up
}
sleep(2000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment