Skip to content

Instantly share code, notes, and snippets.

@jjcall
Created January 28, 2015 04:38
Show Gist options
  • Save jjcall/7993d37611acae19fb5f to your computer and use it in GitHub Desktop.
Save jjcall/7993d37611acae19fb5f to your computer and use it in GitHub Desktop.
function blastOff(n) {
while(n >= 0) {
console.log(n);
n--;
}
console.log("Blast Off");
}
blastOff(3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment