Comment on Dropbox is hiring a Web EngineerparentComments−abstractbill16yYou can make the recursive solution work without any delay: function countdown(n) { if(n >= 0) { alert(n); setTimeout(function() {countdown(n-1);}, 1000); } }
Comments
You can make the recursive solution work without any delay: