Skip to content

Instantly share code, notes, and snippets.

@mstudio
Created March 8, 2012 20:19
Show Gist options
  • Save mstudio/2003173 to your computer and use it in GitHub Desktop.
Save mstudio/2003173 to your computer and use it in GitHub Desktop.
var main = function() {
var _index;
function iterate() {
console.log(_index);
if (_index > 1)
setTimeout(iterate, 1000);
_index--;
}
return {
countdown : function() {
_index = 10;
iterate();
}
};
}();
main.countdown();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment