const hero = { name: 'Batman', realName: 'Bruce Wayne', address: { city: 'Gotham' } }; // Object destructuring: const { realName, address: { city } } = hero; city; // => 'Gotham'