In the field of web development, specifically in JavaScript programming, the value of a constant variable cannot be changed after it has been assigned a value. A constant variable, as the name suggests, is a variable whose value remains constant throughout the execution of a program. Once a value is assigned to a constant variable, it cannot be modified or reassigned.
In JavaScript, the concept of constant variables was introduced in ECMAScript 6 (ES6) with the introduction of the `const` keyword. The `const` keyword is used to declare a constant variable, and it must be assigned a value at the time of declaration. Here's an example:
const PI = 3.14159;
In this example, `PI` is a constant variable that has been assigned the value of 3.14159. Once this value is assigned, it cannot be changed. Any attempt to modify the value of `PI` will result in an error.
For example, the following code will throw an error:
const PI = 3.14159; PI = 3.14; // Error: Assignment to constant variable.
This error occurs because the value of a constant variable cannot be reassigned. It is important to note that this behavior is specific to constant variables declared using the `const` keyword. Regular variables declared using the `let` or `var` keywords can have their values changed or reassigned.
It is worth mentioning that while the value of a constant variable cannot be changed, if the value is an object or an array, the properties or elements of the object or array can still be modified. This is because the reference to the object or array remains constant, but the properties or elements within it can be mutated. Here's an example:
const person = {
name: 'John',
age: 25
};
person.age = 26; // Valid, modifying a property of the object.
console.log(person); // Output: { name: 'John', age: 26 }
In this example, the constant variable `person` holds a reference to an object. Although the reference itself cannot be changed, the properties of the object can be modified.
To summarize, in JavaScript, a constant variable is a variable whose value cannot be changed after it has been assigned. The `const` keyword is used to declare constant variables, and once a value is assigned, it cannot be modified. However, if the value of a constant variable is an object or an array, the properties or elements within it can still be modified.
Other recent questions and answers regarding Basic programming in JavaScript:
- What is the difference between normal strings and template literals when it comes to line breaks and extra white space?
- How can you include line breaks and extra white space within a string using template literals?
- What is the purpose of using backticks when creating template literals?
- What are the three ways to create strings in JavaScript?
- How can you include a single quote character within a string that is enclosed in double quotes?
- Why is it important to use consistent quotes when working with strings in JavaScript?
- What is the keyword used to declare a variable in JavaScript?
- What happens if we try to change the value of a constant in JavaScript?
- How are constants different from variables in JavaScript?
- What is the keyword used to declare a constant in JavaScript?
View more questions and answers in Basic programming in JavaScript

