0% found this document useful (0 votes)
30 views1 page

Accessing Object Properties

Uploaded by

changes10changes
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views1 page

Accessing Object Properties

Uploaded by

changes10changes
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

const person = {

name: "Alice",

age: 30,

greet: function() {

console.log("Hello, " + this.name);

};

console.log(person.name); // Output: Alice

person.greet(); // Output: Hello, Alice

You might also like