Skip to content

Instantly share code, notes, and snippets.

@tycoi2005
Created September 3, 2015 03:09
Show Gist options
  • Save tycoi2005/47bb220da9b9dcb33015 to your computer and use it in GitHub Desktop.
Save tycoi2005/47bb220da9b9dcb33015 to your computer and use it in GitHub Desktop.
function doy(x){
return function(){
console.log("start " + x);
//sleep(2);
console.log("end " + x);
}
}
doy("1")();
setTimeout(doy("2"),100);
setTimeout(doy("3"),0);
setTimeout(doy("4"),100);
doy("5")();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment