The const keyword in JavaScript is used to declare variables whose values are not supposed to be ________.

  • modified
  • read
  • changed
The const keyword in JavaScript is used to declare variables whose values are not supposed to be changed or reassigned after they are initially set. It creates a constant reference to a value, making the variable immutable.
Add your answer
Loading...

Leave a comment

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