Guest User

Untitled

a guest
Jan 16th, 2018
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. // This is our User
  2. const User = {
  3. name: 'John Doe',
  4. email: 'johndoe@example.com',
  5. status: 'enabled'
  6. }
  7.  
  8. // NewUser is now a clone of User
  9. const NewUser = {
  10. ...User
  11. }
  12.  
  13. // We may update our user at time
  14. const NewUpdatedUser = {
  15. ...User,
  16. status: 'disabled'
  17. }
Add Comment
Please, Sign In to add comment