const hero = { name: 'Batman' }; // Object destructuring: const { name: heroName } = hero; heroName; // => 'Batman'