Skip to content

Instantly share code, notes, and snippets.

@duskhacker
Created January 20, 2011 20:11
Show Gist options
  • Save duskhacker/788559 to your computer and use it in GitHub Desktop.
Save duskhacker/788559 to your computer and use it in GitHub Desktop.
MyStuff = function(container) {
var index;
function log(){
console.log(index);
}
function iterate(){
log();
if(index>1) setTimeout(iterate, 1000);
index--;
}
return container['countdown'] = function(){
index = 10;
iterate();
}
}(this);
console.log(countdown());
console.log(log())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment