Advertisement
kalovski

Untitled

Sep 19th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. const MY_CONSTANT = {myProperty: 6};
  2. console.log(MY_CONSTANT.myProperty);
  3. // 6
  4.  
  5.  
  6. MY_CONSTANT.myProperty = 18;
  7. console.log(MY_CONSTANT.myProperty);
  8. // 18
  9.  
  10. const OTHER_CONSTANT = [12, 14, 16];
  11. console.log(OTHER_CONSTANT[0]);
  12. // 12
  13.  
  14. OTHER_CONSTANT[0] = 22;
  15. console.log(OTHER_CONSTANT[0]);
  16. // 22
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement