Shallow and Deep Copy in JavaScript
Shallow Copy
Shallow copy is a bit-wise copy of an object. A new object is created that has exact same values as the original object. If any of the fields of the object are references to other objects, just the reference addresses are copied I.E, T...
arush.hashnode.dev2 min read