Guest User

Untitled

a guest
Feb 23rd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. const obj = {}
  2.  
  3. function updateObj(obj) {
  4. obj.key = 'abc'
  5. obj = null
  6. }
  7.  
  8. console.log(obj)
  9. obj.key = 123
  10. console.log(obj)
  11. updateObj(obj)
  12. console.log(obj)
  13.  
  14. // The output will be:
  15. // {}
  16. // { key: 123 }
  17. // { key: 'abc' }
Add Comment
Please, Sign In to add comment