Skip to content

Instantly share code, notes, and snippets.

@joelnet
Last active March 21, 2019 10:38
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/dd2de9e1544758b7bcf08648ea2bcbd9 to your computer and use it in GitHub Desktop.
Save joelnet/dd2de9e1544758b7bcf08648ea2bcbd9 to your computer and use it in GitHub Desktop.
const partial = { id: 100, name: 'Howard Moon' }
const user = { ...partial, id: 100, password: 'Password!' }
user //=> { 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