A shallow array copy is made with spread from an array containing a nested object. What is shared between source and copy?
Explanation
Spread creates a distinct outer array but copies the nested object reference, so both arrays reach the same nested object. Calling this a deep copy incorrectly implies recursive duplication of referenced values.