Skip to content
Advertisement

Modifying a copy of a JavaScript object is causing the original object to change

I am copying objA to objB

JavaScript

same problem for Arrays

JavaScript

Advertisement

Answer

It is clear that you have some misconceptions of what the statement var tempMyObj = myObj; does.

In JavaScript objects are passed and assigned by reference (more accurately the value of a reference), so tempMyObj and myObj are both references to the same object.

Here is a simplified illustration that may help you visualize what is happening

JavaScript

As you can see after the assignment, both references are pointing to the same object.

You need to create a copy if you need to modify one and not the other.

JavaScript

Old Answer:

Here are a couple of other ways of creating a copy of an object

Since you are already using jQuery:

JavaScript

With vanilla JavaScript

JavaScript

See here and here

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement