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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *