Skip to content

Instantly share code, notes, and snippets.

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