function setCountDown(n) { n = n || 5; (function cd(i) { if ( i >= 0 ) { setTimeout(function() { console.log(i); cd(--i); }, 1000); } }(n)); }