Access properties with dot notation:
let user = { name: "Alice", age: 30 }
console.log(user.name) // "Alice"
console.log(user.age) // 30
console.log(user.email) // undefined (doesn't exist)
Dot notation is clean and readable. Use it when you know the property name at write time.