DEV Community

Shubham Battoo
Shubham Battoo

Posted on • Originally published at shubhambattoo.in

Deep Cloning Objects in JavaScript

A lot of the developers are still not aware of the the method to deep clone objects in JavaScript the native way.
Thats right, structuredClone method is built-in:

const song = {
    title: 'Never gonna give you up',
    artist: 'Rick Astley'
}

const copiedSong = structuredClone(song);
Enter fullscreen mode Exit fullscreen mode

JavaScript's structuredClone method serves as a powerful tool for creating exact, deep copies of complex data structures and objects within the language. Unlike conventional cloning methods, structuredClone can duplicate not only simple data types but also intricate objects, arrays, and nested elements, ensuring their integrity while preserving references. Whether dealing with intricate data structures or nested objects, structuredClone provides developers with a reliable means to duplicate JavaScript entities without compromising their structure or integrity.

It can clone a wide variety of JavaScript types:

Let's look at JSON.parse(JSON.stringify(x))

This hack works perfectly well for all situations, but still has some drawbacks, which are addressed by the structuredClone.

const song = {
    title: 'Never gonna give you up',
    artist: 'Rick Astley',
    tags: ['pop'],
    releaseDate: new Date()
};

const probalamaticCopiedSong = JSON.parse(JSON.stringify(song));

console.log(probalamaticCopiedSong);
Enter fullscreen mode Exit fullscreen mode

The above example we are trying to use the hack to copy the song object with a key which is of type Date but when we try to log the copied object we get the following:

{
  title: 'Never gonna give you up',
  artist: 'Rick Astley',
  tags: [ 'pop' ],
  releaseDate: '2024-01-09T17:01:05.013Z'
}
Enter fullscreen mode Exit fullscreen mode

The releaseDate key is converted to string and is not the desired result, we want the Date to remain as a Date.

What about spread operator?

Understanding what a deep copy means is important here, if we want a shallow copy the spread operator serves the purpose, basically not being able to copy the nested elements of an object.

const song = {
    title: 'Never gonna give you up',
    artist: 'Rick Astley'
};

const copiedSong = {...song};
Enter fullscreen mode Exit fullscreen mode

The above works perfectly fine. Until, we introduce a third key to our song object and try to copy it usign the spread method.

const song = {
    title: 'Never gonna give you up',
    artist: 'Rick Astley',
    tags: ['pop']
};

const shallowCopiedSong = {...song};

shallowCopiedSong.tags.push('rick roll');
Enter fullscreen mode Exit fullscreen mode

Lets look at the same example again with some change, here when we try to push a string value to the tags key on the shallowCopiedSong object, not only it will add 'rick roll' to shallowCopiedSong it will also add it to the song object, and that is not the solution we are looking for.

Browser Compatibility

browser compatibility of structuredClone

Source: MDN

Conclusion

In the ever-evolving realm of JavaScript, structuredClone emerges as a pivotal feature, enabling developers to faithfully replicate intricate data structures and objects while maintaining their integrity. Its ability to create precise duplicates of complex entities empowers developers, ensuring the preservation of relationships and facilitating seamless data manipulation within JavaScript applications.

Top comments (0)