JSFiddle - React, Tailwind, and code Playground

by dmitri_pavlutin

JavaScript

const hero = {
  name: 'Batman',
};

let { name } = hero;

console.log(name); // => 'Batman'