Skip to content

Instantly share code, notes, and snippets.

@heiflo
Created March 8, 2012 20:37
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 heiflo/2003283 to your computer and use it in GitHub Desktop.
Save heiflo/2003283 to your computer and use it in GitHub Desktop.
var countdown = (function(){
var index;
function log(){
console.log(index);
}
function iterate(){
log();
if(index>1) setTimeout(iterate, 1000);
index--;
}
function countdown(){
index = 10;
iterate();
}
return countdown;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment