Skip to content

Instantly share code, notes, and snippets.

@appoll
Created November 14, 2022 18:48
Show Gist options
  • Save appoll/3e0853cc05530b74535448140753c5df to your computer and use it in GitHub Desktop.
Save appoll/3e0853cc05530b74535448140753c5df to your computer and use it in GitHub Desktop.
// 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