shallow copy vs deep clone Ashallow copyof an object is a copy whose properties share the samereferences(point to the same underlying values) as those of the source object from which the copy was made. As a result, when you change either the source or the copy, you may also cause the ...