JSFiddle - React, Tailwind, and code Playground

by dmitri_pavlutin

JavaScript

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

// Object destructuring:
const { address: { city } } = hero;

console.log(city); // => 'Gotham'