Menu
×
×
Correct!
Exercise:Add the following property and value to the person object: country: Norway.
const person = {
firstName: "John",
lastName: "Doe",
country: "Norway"
};
const person = {
firstName: "John",
lastName: "Doe",
country: 'Norway'
};
Not CorrectClick here to try again. Correct!Next ❯const person = { firstName: "John", lastName: "Doe": }; |