Answer Posted / me
A bit of background information. Because the way memory
works (long story), an object consists of two things, the
reference which is basically a pointer, or a label that is
used to access the object, and the actual object data,
which is stored elsewhere (search Google for explanations
on memory stacks and heaps).
If you would simply copy an object, you would only copy the
reference. So what you end up with, are two references that
point to exactly the same data. When you change the
original object, the copy object gets changed as well, and
visa versa.
If that's not what you want, you have to clone the object,
which means you actually create a new object in memory,
that holds a copy of the data of the original object, and
you also create a new reference that points to this new
object.
When you then change some value in the original object, the
copy object stays unchanged.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is let keyword in typescript?
What is scope variable in javascript?
How do you change the style/class on any element using javascript?
Is javascript necessary?
What are math constants and functions using javascript?
What Does JavaScript Void(0) Mean?
What is the difference between HTMLCollection and NodeList?
What kind of conditional statements does JavaScript support?
How to get the type of arguments passed to a function?
How do you declare in javascript?
How do you know if a set of points is a function?
How do I write script-generated content to another window?
How to use one javascript function for multiple input fields?
What is the difference between the operators ‘==‘ & ‘===‘?
How generic objects can be created?