Advertisement
Guest User

Untitled

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