Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created June 16, 2017 07:07
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/0fdea9556f40e46d410494d6026fc085 to your computer and use it in GitHub Desktop.
Save codecademydev/0fdea9556f40e46d410494d6026fc085 to your computer and use it in GitHub Desktop.
Codecademy export
for (i=100; i<=150; i++){
if (i % 2 === 0){
square = i*i;
console.log(square);
}
else{
console.log(i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment