Last active
January 11, 2021 13:28
-
-
Save vasanthk/23c003a36b309436ac9f to your computer and use it in GitHub Desktop.
Constants in ES5 - How does this work?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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