JSFiddle - React, Tailwind, and code Playground
JavaScript
const hero = {
name: 'Batman',
realName: 'Bruce Wayne',
company: 'WayneCorp'
};
const { name, ...rest } = hero;
console.log(rest); // => { realName: 'Bruce Wayne', company: 'WayneCorp' }