Menu
×
×
Correct!
Exercise:Alert "John" by extracting information from the person object.
const person = {
firstName: "John",
lastName: "Doe"
};
alert(person.firstName);
Not CorrectClick here to try again. Correct!Next ❯const person = { firstName: "John", lastName: "Doe" }; alert(); |