Skip to content

Understanding Primitive vs Non-Primitive Data Types in JavaScript

When you’re learning JavaScript, it’s important to understand how different types of data are stored and handled. In this post, we’ll explore the difference between primitive and non-primitive data types, using simple examples to illustrate their behavior.

Primitive Data Types

Primitive data types are the simplest form of data in JavaScript. They’re stored directly in the location that the variable accesses. This storage location is called the “stack” memory.

Let’s look at an example:

let count = 100;
let num = count;
num = 106;
console.log(count); // 100
console.log(num); // 106

primitive data types - 10xTechInfinity

In this example:

  1. We create a variable count and set it to 100.
  2. We create another variable num and set it equal to count.
  3. We then change num to 106.
  4. When we print both variables, we see that count is still 100, while num is 106.

This happens because primitive data types create a new copy of the value when assigned to a new variable. Changing one doesn’t affect the other.

Non-Primitive Data Types

Non-primitive data types, or reference types, are more complex structures. They are stored in the “heap” memory, and the variable holds a reference to the memory location, rather than the actual data.

Let’s look at an example using objects, which are non-primitive:

let person1 = {
fullName: "Manoj Kumar",
rollNo: 786,
};
let person2 = person1;
person2.fullName = "Umesh Chaurasiya";
console.log(person1.fullName); // Umesh Chaurasiya
console.log(person2.fullName); // Umesh Chaurasiya

Non-primitive data types - 10xTechInfinity

In this example:

  1. We create an object person1 with a name and roll number.
  2. We create person2 and set it equal to person1.
  3. We change the fullName of person2.
  4. When we print the fullName of both person1 and person2, they’ve both changed!

This happens because non-primitive data types don’t create a new copy when assigned to a new variable. Rather, both variables reference the same object in memory. Changing one affects the other because they’re actually the same object.

Key Differences

  1. Storage: Primitive types are stored in the stack memory, while non-primitive types are stored in the heap memory.
  2. Copying: When you assign a primitive type to a new variable, it creates a new copy. With non-primitive types, it creates a new reference to the same data.
  3. Mutability: Primitive types are immutable (unchangeable), while non-primitive types are mutable (can be changed).
  4. Examples:
  • Primitive: Number, String, Boolean, Null, Undefined, Symbol
  • Non-primitive: Object, Array, Function

Conclusion

Understanding the difference between primitive and non-primitive data types is crucial for writing efficient JavaScript code. It helps you predict how your data will behave when you’re working with variables, functions, and complex data structures.

Remember, when working with non-primitive types like objects and arrays, be careful about unintended changes. If you need to create a true copy of an object without affecting the original, look into methods like Object.assign() or the spread operator (...).

Keep practicing with these concepts, and you’ll become more comfortable with how JavaScript handles different types of data! Happy coding!