Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ilearnjavascript/52965eef137be88d241954973eb142b6 to your computer and use it in GitHub Desktop.
Save ilearnjavascript/52965eef137be88d241954973eb142b6 to your computer and use it in GitHub Desktop.
es6 - new variable declarations - let and const - 3.js
const obj = {
firstname: 'John'
}
console.log(obj.firstname);
obj.firstname = 'Jane'; // mutation is still possible
console.log(obj.firstname);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment