Skip to content

Instantly share code, notes, and snippets.

@jasonmw
Created November 10, 2011 20:18
Show Gist options
  • Save jasonmw/1356060 to your computer and use it in GitHub Desktop.
Save jasonmw/1356060 to your computer and use it in GitHub Desktop.
var countdown = function(){
var index = 10;
var log = function(){console.log(index)};
var iterate = function(){
log();
if(index>1) setTimeout(iterate, 1000);
index--;
}
if(index>1){
iterate();
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment