Skip to content

Instantly share code, notes, and snippets.

@cheeaun
Created December 14, 2009 10:01
Show Gist options
  • Save cheeaun/255949 to your computer and use it in GitHub Desktop.
Save cheeaun/255949 to your computer and use it in GitHub Desktop.
sleep() function for JavaScript.
// http://twitter.com/thomasfuchs/status/6657618059
var sleep = function(secs){
secs = (+new Date) + secs * 1000;
while ((+new Date) < secs);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment