0 votes
in JavaScript by
How can you read properties of an Object in JavaScript?

1 Answer

0 votes
by
You can write and read properties of an object using the dot notation as follows −

// Getting object properties

emp.name  // ==> Zara

emp.age   // ==> 10

// Setting object properties

emp.name = "Daisy"  // <== Daisy

emp.age  =  20      // <== 20

Related questions

0 votes
asked Oct 4, 2023 in JavaScript by GeorgeBell
0 votes
asked Oct 24, 2023 in JavaScript by DavidAnderson
...