30
Come unire in profondità invece di fondere in profondità?
Sia Object.assign che Object spread fanno solo un'unione superficiale. Un esempio del problema: // No object nesting const x = { a: 1 } const y = { b: 1 } const z = { ...x, ...y } // { a: 1, b: 1 } L'output è quello che ti …