Skip to content

Instantly share code, notes, and snippets.

@cburgdorf
Created March 3, 2011 20:10
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 cburgdorf/853429 to your computer and use it in GitHub Desktop.
Save cburgdorf/853429 to your computer and use it in GitHub Desktop.
// Exercise 2 - Closures
// Wrap the following code in a closure and export only the "countdown" function.
// Code
(function (container) {
var index;
function log() {
console.log(index);
}
function iterate() {
log();
if (index > 1) setTimeout(iterate, 1000);
index--;
}
container.countdown = function countdown() {
index = 10;
iterate();
}
})(window)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment