This lesson shows how to get values from an object in JavaScript. We start with an object named person that has properties name and age. We access the name property using dot notation: person.name. Then we access the age property using bracket notation: person['age']. Both ways get the value stored in the object. The program prints Anna and 30. If you try to get a property that does not exist, JavaScript returns undefined. Dot notation is easy for fixed property names. Bracket notation is useful when the property name is stored in a variable or is not a valid identifier. This visual trace helps you see each step and the values involved.