In JavaScript, the const keyword is often associated with the concept of constants, implying that variables declared with const cannot be changed after initialization. However, it's crucial to understand that JavaScript's const does not create true constants in the traditional sense. This distinction becomes particularly apparent when dealing with objects and arrays.


The Nature of const in JavaScript

When you declare a variable using const in JavaScript, you're telling the interpreter that the variable should not be reassigned. For primitive data types like numbers, strings, and booleans, this behavior is straightforward:

 


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>JavaScript "Not Real" Constants</title>
</head>
<body>
    <script>
        const x = 10;
        // x = 20; // This line will throw a TypeError
        console.log(x); // Output: 10
    </script>
</body>
</html>
 

 

In this example, attempting to reassign x to a new value like 20 will result in a TypeError because x is declared as a constant.


Objects and Arrays with const

However, the behavior of const becomes nuanced when dealing with objects and arrays. Consider this code:

 


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>JavaScript "Not Real" Constants</title>
</head>
<body>
    <script>
        const person = { name: "Alice", age: 30 };
        person.age = 40; // This is allowed
        console.log(person); // Output: { name: "Alice", age: 40 }
    </script>
</body>
</html>
 

 

In this case, although person is declared using const, we can still modify the properties of the object. This behavior might seem contradictory to the idea of constants, but it's important to note that const in JavaScript only prevents the variable from being reassigned to a new value or reference. It does not make the variable or its properties immutable.



The same principle applies to arrays:
 


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>JavaScript "Not Real" Constants</title>
</head>
<body>
    <script>
        const numbers = [1, 2, 3];
        numbers.push(4); // This is allowed
        console.log(numbers); // Output: [1, 2, 3, 4]
    </script>
</body>
</html>
 

 

Here, the numbers array is declared as a constant, but we can still modify its contents using methods like push.


Immutability vs. Reassignment

To understand the distinction better, let's differentiate between immutability and reassignment:

 

  • Immutability: Immutability refers to the inability to change the state of an object or variable after it's been initialized. True constants in programming languages are immutable.
  • Reassignment: Reassignment involves giving a variable a new value or reference. Constants in JavaScript prevent reassignment but do not ensure immutability for complex data types like objects and arrays.
  • When we say JavaScript's const is not real constants, we mean that it provides a level of protection against reassignment but does not guarantee immutability for objects and arrays.



Dealing with Immutability

To achieve immutability in JavaScript, especially for objects and arrays, you can follow certain practices. One common approach is to use techniques like object freezing (Object.freeze()) or object immutability libraries like Immutable.js. Here's an example using Object.freeze():

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>JavaScript "Not Real" Constants</title>
</head>
<body>
    <script>
        const person = Object.freeze({ name: "Alice", age: 30 });
        // Attempting to modify properties will not work
        person.age = 40;
        console.log(person); // Output: { name: "Alice", age: 30 }
    </script>
</body>
</html>

 

In this example, Object.freeze() makes the person object immutable, so any attempts to modify its properties will be ignored. This approach ensures that the object remains unchanged once created.


Benefits of "Not Real" Constants

While JavaScript's const may not enforce true immutability for complex data types, it still offers several benefits:

 

  • Readability: Constants declared with const convey the intention that their values should not be re-assigned, enhancing code readability.
  • Preventing Accidental Reassignments: const prevents accidental reassignments of variables, reducing the risk of unintentional bugs.
  • Maintaining References: Even though the properties of objects and arrays can be modified, const ensures that the variable itself maintains its reference.
     



Practice Excercise Practice now