Lesson 10 - ITS AN ASSIGNMENT.
Values and Variable
- Declare variable called
country,continentpopulationand assign their values to your own country (populations in millions). - Log their values to the console.
What I did:
let country = "United Kingdom";
let continent = "Europe";
let population = "69.5 Million";
let finalString = `Country: ${country}, Continent: ${continent}, Population: ${population}`;
console.log(finalString);