In general, when we copy things and whenever we make changes, we expect the original thing to stay the same, whereas the copy changes.
Copy Primitive Data Types
When you make a copy, it will be a real copy
const a = 5
let b = a
b = 6
console.log(b) // 6
console.log(a) // 5
Copy Objects
When we assign variable to an object, it just creates a pointer (reference) to that value. So if make a copy b = a, changes in "b" will also impact "a" as well since "a" and "b" actually point to the same thing.
A deep clone means that all of the values of the new variable are copied and disconnected from the original variable, for example, JSON. A shallow clone means that certain (sub-)values are still connected to the original variable, for example, spread operator.
When you have a nested object (or array) and you copy it, nested objects inside that object will not be copied, since they are only pointers / references. In summary, a shallow copy means the first level is copied, deeper levels are referenced. The deep clone is a true copy for nested objects.