Values and Variables
Declare variables called
country,continentandpopulationand assign their values according to your own country (population in millions).Log their values to the console.
let country = 'Portugal';
let continent = 'Europe';
let population = 10;
console.log(country);
console.log(continent);
console.log(population);