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.
Loading...
Related Quiz
- How can you handle CORS to allow cookies to be included in requests?
- In JavaScript, altering an object’s prototype at runtime can lead to ______ performance impacts.
- What would happen if you do not use the express.static middleware function for serving static files?
- When publishing a package to the NPM registry, what file is crucial to define the package properties and dependencies?
- How can you ensure that your project’s dependencies are secure and up-to-date?