Skip to content

Instantly share code, notes, and snippets.

@joelnet
Created March 1, 2019 07:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save joelnet/0d1c4d79ae945e4311436691aaf238b1 to your computer and use it in GitHub Desktop.
Save joelnet/0d1c4d79ae945e4311436691aaf238b1 to your computer and use it in GitHub Desktop.
const part1 = { id: 100, name: 'Howard Moon' }
const part2 = { id: 100, password: 'Password!' }
const user1 = { ...part1, ...part2 }
//=> { id: 100, name: 'Howard Moon', password: 'Password!' }
@joelnet
Copy link
Author

joelnet commented Mar 18, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment