Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created March 30, 2016 13:56
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/748e9afca08e64fabff255ad650c4ae1 to your computer and use it in GitHub Desktop.
Save codecademydev/748e9afca08e64fabff255ad650c4ae1 to your computer and use it in GitHub Desktop.
Codecademy export
// Write your code below!
var count = 0;
var cities = ["Tokyo", "Berlin", "Melbourne"];
for (var i = 0; cities.length <4 ; i++) {
console.log("The cities I want to go to are" + " " + cities);
};
var count = false;
while (count <= 3) {
console.log("I hope I go soon.");
}
do {
console.log("This would be a dream!");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment