Nested objects

Report a typo

What object does the keyword this refer to in the example below?

let country = {
  name: "Germany",
  language: "german",
  capital: {
    name: "Berlin",
    population: 3644826,
    getPopulation() {
      console.log(this.population);
    }
  }
};
Select one option from the list
___

Create a free account to access the full topic