The Best Way to Deep Copy an Object in JavaScript

In this article, we’ll learn what shallow and deep copying is, and the best way to deep copy an object in JavaScript.

Shallow Copying vs Deep Copying

In a reassignment operation involving primitive data types such as strings, numbers and booleans, the original variable is copied by JavaScript. 

For example, consider the following code:

let x = 3
y = x // x is copied into y

y++ // y is incremented

console.log(y) // now 4
console.log(x) // still 3

In this case, the value 3 is copied into y and then x is disconnected from y. So mutating y does not affect x.

Conversely, with non-primitive data types like arrays and objects, only a reference to the values is passed. So when the copy is mutated, the original also gets mutated. This is also known as shallow copying.

let adam = {name: “Adam”};

let jason = adam;
jason.name = “Jason”;

console.log(adam.name); // outputs “Jason”
console.log(jason.name); // outputs “Jason”

If we instead want to copy an object so that we can modify it without affecting the original object, we need to make a deep copy

5 Ways To Deep Copy Objects in JavaScript

In JavaScript, we can perform a copy on objects using the following methods:

Method
Pros
Cons

shallow copy with =
clear and direct, the default

only shallow copies objects

JSON.stringify() and JSON.parse()
deep copies nested objects

doesn’t copy functions

Object.assign()
copies the immediate members of an object—including functions

doesn’t deep copy nested objects

the … spread operator
simple syntax, the preferred way to copy an object

doesn’t deep copy nested objects

Lodash cloneDeep()
clones nested objects including functions

adds an external dependency to your project

These methods all have their pros and cons. Let’s take a closer look at each of them.

Shallow Copy an Object By Assignment

You can create a shallow copy of an object by simply assigning the original object to a new variable. 

Consider the following object:

const user = {
name: “Kingsley”,
age: 28,
job: “Web Developer”
}

To create a copy of the object user, we assign the object to a new variable like so:

const clone = user

console.log(user)
console.log(clone)

/*
{
age: 28,
job: “Web Developer”,
name: “Kingsley”
}

{
age: 28,
job: “Web Developer”,
name: “Kingsley”
}
*/

As observed in the console output, we have now copied the object from user into clone.

However, all we did was create a reference to the original object. Whenever we mutate a property in the object clone, we’ll also end up mutating the original object (user) as we do in the following code:

clone.age = 30

console.log(user)
console.log(clone)

/*
{
age: 30,
job: “Web Developer”,
name: “Kingsley”
}
{
age: 30,
job: “Web Developer”,
name: “Kingsley”
}
*/

So when a non-primitive data type (array or object) is assigned to a new variable, JavaScript makes a shallow copy of the original object.

Copy an Object with JSON.stringify() and JSON.parse()

The JSON.stringify() method takes in an object and creates a JSON string from it. The JSON.parse() method parses a string and returns a JavaScript object.

We can combine both of these methods to create a copy of an object in the following way:

const user = {
name: “Kingsley”,
age: 28,
job: “Web Developer”
}

let clone = JSON.parse(JSON.stringify(user))

console.log(user)
console.log(clone)

/*
{
age: 28,
job: “Web Developer”,
name: “Kingsley”
}
{
age: 28,
job: “Web Developer”,
name: “Kingsley”
}
*/

When the copy object is mutated, the original object stays the same:

clone.age = 32

console.log(user)
console.log(clone)

/*
{
age: 28,
job: “Web Developer”,
name: “Kingsley”
}
{
age: 32,
job: “Web Developer”,
name: “Kingsley”
}
*/

However, there is one caveat to using this approach: JSON.stringify() does not copy functions.

Suppose we have a method in our object user called incrementAge:

const user = {
name: “Kingsley”,
age: 28,
job: “Web Developer”,
incrementAge: function() {
this.age++
}
}

The function will not be available in the copied object.

Thus, this method achieves deep copy only if there is no function within the object.

Copy an Object with Object.assign()

Before ES6, Object.assign() was the most popular way to deep copy an object.

const user = {
name: “Kingsley”,
age: 28,
job: “Web Developer”,
incrementAge: function() {
this.age++
}
}

let clone = Object.assign({}, user) // Copies user into clone

Object.assign() will copy everything into the new object, including any functions. Mutating the copied object also doesn’t affect the original object.

clone.age = 32

console.log(user)
console.log(clone)

/*
{
age: 28,
incrementAge: function() {
this.age++
},
job: “Web Developer”,
name: “Kingsley”
}
{
age: 32,
incrementAge: function() {
this.age++
},
job: “Web Developer”,
name: “Kingsley”
}
*/

However, one thing to remember about Object.assign() is that the method only performs a partial deep copy on objects.

To understand what that means, let’s consider the following:

const user = {
name: “Kingsley”,
age: 28,
job: “Web Developer”,
location: {
city: “Lagos”,
}
}

const clone = Object.assign({}, user)

As observed, we added the location property and passed an object as its value. Now we have a more complex structure that contains a nested object. 

Whenever we mutate a property within the nested object (in clone), it will also mutate the same property in the original object (users). Let’s take a look:

clone.age = 32
clone.location.city = “New York”

console.log(user)
console.log(clone)

/*
{
age: 28,
job: “Web Developer”,
location: {
city: “New York”
},
name: “Kingsley”
}

{
age: 32,
job: “Web Developer”,
location: {
city: “New York”
},
name: “Kingsley”
}
*/

While the age property in the original object remained untouched, the city property was mutated by the reassignment operation.

Hence, the Object.assign() method should be used to deep copy objects that have no nested objects. 

The Best Way To Deep Copy in JavaScript: The Spread Operator

Another way to deep copy objects in JavaScript is with the ES6 spread operator. Using the three dots (…) collects all values on the original object into another object.

const user = {
name: “Kingsley”,
age: 28,
job: “Web Developer”
}

const clone = {…user}

console.log(clone);

/*
{
age: 28,
job: “Web Developer”,
name: “Kingsley”
}
*/

However, much like with Object.assign(), the spread operator only makes a partial copy. So any object with a nested object will not be deep copied.

To make a complete deep copy with the spread operator, we’ll have to write some additional code.

Consider the same user object but with a nested object:

let user = {
name: “Kingsley”,
age: 28,
job: “Web Developer”,
location: {
city: “Lagos”,
}
}

let clone = {…user}

To avoid mutating the original object which is user, we must spread the copy object before making direct changes to any of its properties. For any nested object, we must also spread that sub-object before making changes to any of its properties:

clone = {
…clone,
age: 32,
location: {
…clone.location,
city: “New York”
}
}

Here we mutated age which is a top-level property in clone, and city which is a sub-property.

This time the spread operation will give a complete deep copy wherein the original object will be unaffected by any mutation on the copy (clone)

console.log(user)
console.log(clone)

/*
{
age: 28,
job: “Web Developer”,
location: {
city: “Lagos”
},
name: “Kingsley”
}

{
age: 32,
job: “Web Developer”,
location: {
city: “New York”
},
name: “Kingsley”
}
*/

Use Lodash cloneDeep() for Deep Copy

Lodash also provides a utility method _.cloneDeep() for deep cloning of objects in JavaScript.  Read more about the method here.

Conclusion

As you’ve seen, there are a number of ways to copy a variable in JavaScript. None of them is perfect for every occasion, so you’ll have to be careful to chose the best method for each situation.

To review, here are the methods and their pros and cons.

Method
Pros
Cons

shallow copy with =
clear and direct, the default

only shallow copies objects

JSON.stringify() and JSON.parse()
deep copies nested objects

doesn’t copy functions

Object.assign()
copies the immediate members of an object—including functions

doesn’t deep copy nested objects

the … spread operator
simple syntax, the preferred way to copy an object

doesn’t deep copy nested objects

Lodash cloneDeep()
clones nested objects including functions

adds an external dependency to your project

Generated by Feedzy