-
-
Save appoll/e75bcf0d918d70635a5d1734a04da2d8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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