Reading and tinkering with the new features offered by ECMAScript 6.
The new 'const' statement for writing constant variables is a nifty feature, which adds features to an already interesting update.
The variable is created as read-only, and once it is stated it can't be overridden.
EDIT: A consequent problem arise, for example, when testing code on the console. Running a script containing a const definition twice, would lead to an error, breaking the execution.
What if I want to release that keyword? Is there any way to unset or delete the variable?
I've read in this post that this is actually a problem which affects the var statement as well, because the environments where the variables are created are different on many level of abstraction.
How ECMAScript 6 intend to address this issue?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…