Skip to content

Instantly share code, notes, and snippets.

@5iDS
Created May 1, 2013 20:04
Show Gist options
  • Save 5iDS/5497936 to your computer and use it in GitHub Desktop.
Save 5iDS/5497936 to your computer and use it in GitHub Desktop.
JS Sleep function
function jszz(s){
s=s*1000;
var a=true;
var n=new Date();
var w;
var sMS=n.getTime();
while(a){
w=new Date();
wMS=w.getTime();
if(wMS-sMS>s) a=false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment