Guest User

Untitled

a guest
Jan 20th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. const a = [2,3,4]
  2.  
  3. a.push(9)
  4.  
  5. console.log(a) // [2,3,4,9]
  6.  
  7. const b = {"key": "value"}
  8.  
  9. b.key = "newValue"
  10.  
  11. console.log(b) // {"key": "newValue"}
Add Comment
Please, Sign In to add comment