Skip to content

Instantly share code, notes, and snippets.

@CristalT
Created January 18, 2019 16:05
Show Gist options
  • Save CristalT/e9c14adc744710c092a6277006e3ef58 to your computer and use it in GitHub Desktop.
Save CristalT/e9c14adc744710c092a6277006e3ef58 to your computer and use it in GitHub Desktop.
// replicate an object excepting some items
const hero = {
name: 'Bruno',
alterego: 'Batman',
superpowers: false,
couching: 8
}
// Way one
const { couching, name, ...collection } = hero
console.log(collection)
// Way two
delete hero.couching
delete hero.name
console.log(hero)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment