Skip to content

Instantly share code, notes, and snippets.

@jordandobson
Created March 3, 2011 20:17
Show Gist options
  • Select an option

  • Save jordandobson/853452 to your computer and use it in GitHub Desktop.

Select an option

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