Home » Shallow and Deep Copy

Shallow and Deep Copy

Shallow and Deep Copy

Introduction

In JavaScript, copying objects or arrays can be straightforward, but it’s essential to understand the differences between shallow and deep copies. These concepts determine how nested objects and arrays are handled during copying operations. Let’s delve into what shallow and deep copies mean, their implications, and how to implement them effectively.

Shallow Copy

A shallow copy creates a new object or array and inserts references to the original elements found in the source. In other words, it duplicates the structure at the top level, but the nested elements inside the new copy still reference the same objects as the original.

Example of Shallow Copy:

const original = {
    name: 'John',
    age: 30,
    address: {
        city: 'New York',
        country: 'USA'
    }
};

// Creating a shallow copy
const shallowCopy = { ...original };

// Modifying the nested object in shallow copy
shallowCopy.address.city = 'San Francisco';

console.log(original.address.city); // Output: San Francisco
JavaScript

In the example above, modifying shallowCopy.address.city also affects original.address.city because they reference the same nested object.

Deep Copy

A deep copy, on the other hand, creates a completely new object or array and recursively copies all nested objects and arrays found in the original. This means that any changes made to the deep copy do not affect the original structure.

Example of Deep Copy:

const original = {
    name: 'Alice',
    age: 25,
    address: {
        city: 'London',
        country: 'UK'
    }
};

// Creating a deep copy using JSON methods
const deepCopy = JSON.parse(JSON.stringify(original));

// Modifying the nested object in deep copy
deepCopy.address.city = 'Manchester';

console.log(original.address.city); // Output: London
JavaScript

In this case, changing deepCopy.address.city does not impact original.address.city as they are distinct entities in memory.

Key Differences and Use Cases

  • Mutation Effects: Shallow copies reflect changes across all references to nested objects, whereas deep copies maintain isolation.
  • Performance: Shallow copies are generally faster to create, while deep copies can be slower, especially for large or deeply nested structures.
  • Use Cases: Shallow copies are sufficient for simple structures or when shared references are desired. Deep copies are necessary when you need independent copies or when working with mutable data structures.

Implementing Shallow and Deep Copy

Shallow Copy Methods

  • Object Spread Operator (...): Used for shallow copying objects.
  • Array slice() or concat(): Creates shallow copies of arrays.
const shallowCopy = { ...original };
const shallowArrayCopy = originalArray.slice();
JavaScript

Deep Copy Methods

  • JSON Methods (JSON.parse() and JSON.stringify()): Converts objects to strings and back, creating deep copies but with limitations on handling certain data types like functions or undefined.
const deepCopy = JSON.parse(JSON.stringify(original));
JavaScript
  • Custom Recursive Functions: Implement custom functions to recursively copy nested structures, ensuring deep copies with more control over edge cases.
function deepCopy(obj) {
    // Implementation logic for deep copy
}
JavaScript

Conclusion

Comprehending the distinctions among superficial and profound duplicates is vital for controlling data immutability and warding off unintended side effects in JavaScript apps. Regardless if you select a superficial duplicate for efficiency motives or need a profound duplicate to uphold data integrity, picking the correct strategy relies on your particular use case and the arrangement of your data. By honing these ideas and methodologies, you can effectively handle and modify intricate data structures in your JavaScript undertakings.

Frequently Asked Questions

1. What is the difference between shallow and deep copy?

Shallow Copy: Copies the top-level structure of an object or array, but nested elements are shared references with the original.
Deep Copy: Creates a completely new object or array and recursively copies all nested objects and arrays, ensuring no shared references with the original.

2. When should we use shallow copy ?

Shallow copy is suitable when you want to duplicate simple data structures or when you intentionally want shared references to nested objects. It’s faster to create compared to deep copy and sufficient for many use cases where immutability of nested objects is not critical.

3. When is deep copy necessary ?

Deep copy is necessary when you need to ensure that modifications to the copied object do not affect the original or when working with complex nested data structures that require independent copies. It ensures data integrity by creating completely separate copies of nested elements.