Skip to content

Instantly share code, notes, and snippets.

@appoll
Created November 14, 2022 18:09
Show Gist options
  • Save appoll/e75bcf0d918d70635a5d1734a04da2d8 to your computer and use it in GitHub Desktop.
Save appoll/e75bcf0d918d70635a5d1734a04da2d8 to your computer and use it in GitHub Desktop.
// Exercise 0 - Uncomment and Fix the lines below:
// console.log("My message 4);
// console.log("My message 4";
// consolelog("My message 4");
// Exercise 1
// Print your three favourite cities, each city on each line. The output should look like this:
/*
My favourite 3 cities are:
Hamburg
Berlin
Dortmund
*/
// Exercise 2
// Make each city be printed between quotes
/*
My favourite 3 cities are:
"Hamburg"
"Berlin"
"Dortmund"
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment