JSFiddle - React, Tailwind, and code Playground
by Muthuraman B
JavaScript
const object = {
name: "Example",
age: 30,
city: "New York",
};
const {name, age, city} = object;
by Muthuraman B
const object = {
name: "Example",
age: 30,
city: "New York",
};
const {name, age, city} = object;