A source object has a nested details object. After an object-spread copy is made, which statement describes copy.details?
Explanation
Object spread copies enumerable own properties only one level deep, so the nested details value remains the same object reference. Calling this a recursive deep copy is the tempting mistake; later sources can also replace an earlier same-named property during spreading.