Guest User

Untitled

a guest
Oct 16th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. const x = {
  2. foo: 29
  3. };
  4.  
  5. const y1 = { foo: 42 };
  6. const y2 = {};
  7. const y3 = { foo: null };
  8. const y4 = { foo: undefined };
  9.  
  10. console .log(Object.assign({}, x, y1));
  11. console .log(Object.assign({}, x, y2));
  12. console .log(Object.assign({}, x, y3));
  13. console .log(Object.assign({}, x, y4));
  14.  
  15. console.log('-------------- curve ball ---------')
  16. console .log(Object.assign({}, x, JSON.parse(JSON.stringify(y3))));
  17. console .log(Object.assign({}, x, JSON.parse(JSON.stringify(y4))));
Add Comment
Please, Sign In to add comment