-
-
Save appoll/3e0853cc05530b74535448140753c5df 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
// E3. | |
// a. Create a variable and give it the value of your home city; print it; | |
// b. Create a second variable for the city in which you were born; print it; | |
// c. Create a 3rd variable and store the distance between the 2 cities; | |
// d. Print the following on one line: | |
// I was born in .... I now live in ..... The distance between ... and .... is ... kilometers | |
// E4. Print the following output: | |
// I want to buy a Volkswagen which costs 13000 | |
console.log("I want to buy a " + carBrand + " which costs " + carPrice); | |
// E5. Define two more variables with MEANINGFUL names | |
carWeight = 3500; | |
carTUVDate = "2021-12-10"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment