Skip to content

Instantly share code, notes, and snippets.

@MorenoMdz
Created October 19, 2018 18:07
Show Gist options
  • Select an option

  • Save MorenoMdz/baf3c8cf245e2cadaeb26c2aafaac90f to your computer and use it in GitHub Desktop.

Select an option

Save MorenoMdz/baf3c8cf245e2cadaeb26c2aafaac90f to your computer and use it in GitHub Desktop.
ES2018 Examples
// Spread to remove field
const user = {
firstName: 'John',
lastName: 'Doe',
city: 'Here'
}
const { city, ...userWIthoutCity} = user
city // here
userWIthoutCity // {firstName: 'John', lastName: 'Doe'}
/* It takes the city and makes a new variable, then take the rest, and make another object. */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment