Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created June 28, 2016 06:03
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/db77dcd9bc700513b30fa116a1c466a7 to your computer and use it in GitHub Desktop.
Save codecademydev/db77dcd9bc700513b30fa116a1c466a7 to your computer and use it in GitHub Desktop.
Codecademy export
// Write your code below!
for (var a = 0; a <= 5; a++) {
console.log(a + ". for loop in action!");
while ( (j = a) && (j === 2) ) {
console.log("And here is a while loop! Line: " + a);
};
};
do {
console.log("hello world");
} while(a < 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment