Skip to content

Instantly share code, notes, and snippets.

@jordandobson
Created March 3, 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 jordandobson/853452 to your computer and use it in GitHub Desktop.
Save jordandobson/853452 to your computer and use it in GitHub Desktop.
create closure
(function(countdown, container){
var index;
function log(){
console.log(index);
}
function iterate(){
log();
if(index>1) setTimeout(iterate, 1000);
index--;
}
container[countdown] = function(){
index = 10;
iterate();
}
})('countdown', this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment