Skip to content

Instantly share code, notes, and snippets.

@natbat
Created May 20, 2009 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save natbat/114743 to your computer and use it in GitHub Desktop.
Save natbat/114743 to your computer and use it in GitHub Desktop.
function wait(millis) {
var date = new Date();
var curDate = null;
do {
curDate = new Date();
} while(curDate-date < millis);
var date = null;
var curDate = null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment