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