Assignments for The Complete JavaScript Course by Jonas Schmedtmann Help

Values and Variables

  1. Declare variables called country, continent and population and assign their values according to your own country (population in millions).

  2. Log their values to the console.

let country = 'Portugal'; let continent = 'Europe'; let population = 10; console.log(country); console.log(continent); console.log(population);