Skip to content

Instantly share code, notes, and snippets.

@kutyel
Created July 5, 2018 07:17
Show Gist options
  • Save kutyel/b4803fa873e9147c5f1ce0f3ccbd63ca to your computer and use it in GitHub Desktop.
Save kutyel/b4803fa873e9147c5f1ce0f3ccbd63ca to your computer and use it in GitHub Desktop.
const foo = { a: 1, b: 2, c: 3 }
const { x, ...y } = foo // rest properties
console.log(x) // 1
console.log(y) // { b: 2, c: 3 }
const bar = { d: 4, e: 5 }
const baz = { ...foo, ...bar } // spread properties
console.log(baz) // { a: 1, b: 2, c: 3, d: 4, e: 5 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment