A const declaration ensures that the variable's __________ cannot be reassigned.
- type
- value
- identity
- scope
The correct option is 'value'. When a variable is declared with 'const' in JavaScript, its value cannot be reassigned. However, it's important to note that the const declaration does not make the variable itself immutable; it only ensures that the binding of the variable to a value remains constant.
Loading...
Related Quiz
- What is the purpose of the WeakMap and WeakSet in ES6 compared to Map and Set?
- What is the significance of side effects in a function in terms of functional programming?
- A class in ES6 is a special type of function, and it can be declared using the ________ keyword.
- Can you use both named and default exports in the same ES6 module?
- How does method definition in ES6 classes affect the prototype chain?