Skip to content

Instantly share code, notes, and snippets.

@dstevensio
Created September 24, 2015 23:07
Show Gist options
  • Save dstevensio/ebefecb5f6b6d19da6aa to your computer and use it in GitHub Desktop.
Save dstevensio/ebefecb5f6b6d19da6aa to your computer and use it in GitHub Desktop.
Const is not immutable
const x = 12;
console.log(x); // 12
x = 42;
console.log(x); // 12 (but no error)
const y = {};
y.newProp = "value";
console.log(y); // {newProp: "value"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment