Skip to content

Instantly share code, notes, and snippets.

@nborwankar
Created July 29, 2010 18:27
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 nborwankar/498841 to your computer and use it in GitHub Desktop.
Save nborwankar/498841 to your computer and use it in GitHub Desktop.
(function(name, container){
var index=10;
function log(){
console.log(index);
}
function iterate(){
log();
if(index>1) setTimeout(iterate, 1000);
index--;
}
container['countdown'] = function() { return iterate()};
})('countdown',this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment