image2text

Untitled

Aug 11th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. L N ]
  2.  
  3. ()il ol shf SR B THE A ) s e g R A (Rl
  4.  
  5. // deep copy objects
  6.  
  7. const deepCopy = JSON.parse(JSON.stringify(obj));
  8.  
  9. /* Gotchas
  10.  
  11. X If the object has undefined values that will be stripped off
  12. and will not show up in the copied object, that is how JSON works.
  13. > This cannot copy function definitions present in an object.
  14.  
  15. X/
Advertisement
Add Comment
Please, Sign In to add comment