Skip to content

Instantly share code, notes, and snippets.

@vasanthk
Last active January 11, 2021 13:28
Show Gist options
  • Save vasanthk/23c003a36b309436ac9f to your computer and use it in GitHub Desktop.
Save vasanthk/23c003a36b309436ac9f to your computer and use it in GitHub Desktop.
Constants in ES5 - How does this work?
'use strict';
// define favorite as a non-writable `constant` and give it the value 7
Object.defineProperties(window, {
favorite: {
value: 7,
enumerable: true
}
});
// ^ descriptors are by default false and const are enumerable
var favorite = 7;
// Attempt to overwrite the constant
favorite = 15;
// will still print 7
console.log('my favorite number is still: ' + favorite);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment