Skip to content

Instantly share code, notes, and snippets.

@biilmann
Created April 4, 2013 04:08
Show Gist options
  • Save biilmann/5307760 to your computer and use it in GitHub Desktop.
Save biilmann/5307760 to your computer and use it in GitHub Desktop.
var countdown = function count(num) {
console.log(num);
if (num <= 0) { count(num - 1); }
}
countdown(2);
count(2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment