DEV Community

Cover image for JavaScript Variables: Understanding Primitives and Reference Types
Jack Pritom Soren
Jack Pritom Soren

Posted on

JavaScript Variables: Understanding Primitives and Reference Types

Two basic sorts of data are stored in variables in JavaScript: primitives and reference types. Understanding the distinction between these two types is essential for memory management and for regulating the sharing, storing, and altering of data. This article delves into the distinctions, provides real-world examples, and examines methods for efficiently handling both kinds.


1. Primitives vs Reference Types

Primitives

The simplest kinds of data are called primitives. They directly store unchangeable data in the variable. The primitive types that JavaScript supports are as follows:

  • string: "hello"
  • number: 42
  • boolean: true or false
  • null
  • undefined
  • symbol
  • bigint

Key characteristics:

  • Immutable: Their value cannot be altered directly.
  • Stored by value.

Reference Types

On the other hand, reference types store the memory locations of objects. Rather than storing the actual value, variables save a reference to the memory address. Among the examples are:

  • object: { name: 'Alice' }
  • array: [1, 2, 3]
  • function: function() { console.log('hello'); }
  • Date: new Date()

Key characteristics:

  • Mutable: Their contents can be modified.
  • Stored by reference.

2. Primitives and Reference Types in Action

// Primitive Example
let a = 10;
let b = a;
b = 20;
console.log(a); // Output: 10

// Reference Example
let obj1 = { name: 'Alice' };
let obj2 = obj1;
obj2.name = 'Bob';
console.log(obj1.name); // Output: 'Bob'
Enter fullscreen mode Exit fullscreen mode

Explanation:

  • Primitives: Assigning a to b creates a copy of the value. Changing b does not affect a since they are independent.
  • Reference Types: Both obj1 and obj2 point to the same memory location. Changing the content via obj2 also updates obj1.

3. Visualizing the Concept

  • Primitives: Imagine each variable as its own box containing a value. Copying creates a new box with an independent value.
  • Reference Types: Think of variables as labels pointing to a shared container. All labels referencing the same container are affected by changes made to its content.

4. Mutation vs Assignment

Understanding the difference between mutation and assignment is key when working with reference types.

Mutation: Modifies the contents of the existing object.

let arr = [1, 2, 3];
let arr2 = arr;
arr2.push(4);
console.log(arr); // Output: [1, 2, 3, 4]
Enter fullscreen mode Exit fullscreen mode

Assignment: Changes the reference to a new object.

let arr = [1, 2, 3];
let arr2 = arr;
arr2 = [4, 5, 6];
console.log(arr); // Output: [1, 2, 3]
Enter fullscreen mode Exit fullscreen mode

5. Copying Objects and Arrays

Shallow Copy:

To create a separate copy of an object or array, use the spread operator (...) or Object.assign().

let original = { name: 'Alice' };
let copy = { ...original };
copy.name = 'Bob';
console.log(original.name); // Output: 'Alice'
Enter fullscreen mode Exit fullscreen mode

Deep Copy:

For nested objects, a deep copy is required. A common approach is using JSON.parse(JSON.stringify()).

let nested = { person: { name: 'Alice' } };
let deepCopy = JSON.parse(JSON.stringify(nested));
deepCopy.person.name = 'Bob';
console.log(nested.person.name); // Output: 'Alice'
Enter fullscreen mode Exit fullscreen mode

6. Pass by Value vs Pass by Reference

Primitives (Pass by Value):

When passing primitives to a function, a copy of the value is passed.

function modifyValue(x) {
  x = 20;
}
let num = 10;
modifyValue(num);
console.log(num); // Output: 10
Enter fullscreen mode Exit fullscreen mode

Reference Types (Pass by Reference):

When passing reference types, a reference to the memory location is passed.

function modifyObject(obj) {
  obj.name = 'Bob';
}
let person = { name: 'Alice' };
modifyObject(person);
console.log(person.name); // Output: 'Bob'
Enter fullscreen mode Exit fullscreen mode

7. Primitive Wrapper Types

Even though primitives are immutable, JavaScript temporarily wraps them in objects to allow access to methods and properties.

let str = 'hello';
console.log(str.length); // Output: 5
Enter fullscreen mode Exit fullscreen mode

Explanation:

The string primitive 'hello' is temporarily wrapped in a String object to access the length property. The wrapper is discarded after the operation.


8. Best Practices

  1. Use const for Reference Types: Declaring objects and arrays with const prevents reassignment but allows mutation of contents.
   const obj = { name: 'Alice' };
   obj.name = 'Bob'; // Allowed
   obj = { age: 25 }; // Error: Assignment to constant variable.
Enter fullscreen mode Exit fullscreen mode
  1. Avoid Unintended Mutations:
    If you need an independent copy, ensure you create one using the spread operator or deep copy techniques.

  2. Know When to Use Deep Copies:
    For shallow objects, a spread operator is sufficient, but nested structures require deep copies to avoid reference issues.

  3. Leverage Immutability:
    Use libraries like Immutable.js or embrace functional programming techniques to minimize bugs caused by unintended mutations.


9. Common Pitfalls

  1. Confusing Assignment with Mutation:
    Be mindful of whether you’re modifying an object or reassigning a reference.

  2. Modifying Shared References:
    Changes to a shared object can have unintended consequences if other parts of the program also use it.

  3. Assuming All Copies Are Independent:
    Remember that shallow copies do not protect against changes in nested structures.


Conclusion

One of the core ideas of JavaScript is the distinction between primitives and reference types. It affects how you send data to functions, manage variables, and prevent unexpected side effects in your code. You can build more dependable and maintainable JavaScript code by grasping these ideas and using best practices.

Follow me on : Github Linkedin

Top comments (0)