Objects can contain other objects as property values. This creates hierarchical data structures.
const company = {
name: "TechCorp",
address: {
city: "Seattle",
zip: "98101"
}
};
console.log(company.address.city); // "Seattle"
Chain dot notation to access nested properties. Each dot drills one level deeper.