kalovski

Untitled

Sep 19th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. const MY_CONST = 12;
  2. console.log(MY_CONST);
  3. // 12
  4.  
  5. MY_CONST = 16;
  6. // Silent error, as we cannot reassign a new value to a constant
Add Comment
Please, Sign In to add comment