Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. const partial = { id: 100, name: 'Howard Moon' }
  2. const user = { ...partial, id: 100, password: 'Password!' }
  3.  
  4. user //=> { id: 100, name: 'Howard Moon', password: 'Password!' }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement