JSFiddle - React, Tailwind, and code Playground

by dmitri_pavlutin

JavaScript

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

const prop = 'name';
const { [prop]: name } = hero;

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