Assignments for The Complete JavaScript Course by Jonas Schmedtmann Help

Introduction to Objects

  1. Create an object called myCountry for a country of your choice, containing properties country, capital, language, population and neighbours (an array like we used in previous assignments).

const myCountry = { country: 'Finland', capital: 'Helsinki', language: 'finnish', population: 6, neighbours: ['Norway', 'Sweden', 'Russia'] };