Created
January 20, 2011 20:11
-
-
Save duskhacker/788559 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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