JSFiddle - React, Tailwind, and code Playground
JavaScript
const hero = {
name: 'Batman'
};
// Object destructuring:
const { name: heroName } = hero;
console.log(heroName); // => 'Batman'
const hero = {
name: 'Batman'
};
// Object destructuring:
const { name: heroName } = hero;
console.log(heroName); // => 'Batman'