Skip to content

Instantly share code, notes, and snippets.

@grumpit
Created May 24, 2012 19:08
Show Gist options
  • Save grumpit/2783587 to your computer and use it in GitHub Desktop.
Save grumpit/2783587 to your computer and use it in GitHub Desktop.
JSMasterClass Exercise
(function(countdown, container){
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