Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created June 16, 2017 08:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/8e57f1967e336ba9f94eb107d9e0efdf to your computer and use it in GitHub Desktop.
Save codecademydev/8e57f1967e336ba9f94eb107d9e0efdf to your computer and use it in GitHub Desktop.
Codecademy export
for (i=10; i>=0; i--){
if (i === 0){
console.log("Blast off!")
}
else{
console.log(i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment