Object assign with nested property doesnt work !
const person1 = {
cars: [
{id:2}
],
};
const person2 = Object.assign({}, person1);
Object assign with nested property doesnt work !
const person1 = {
cars: [
{id:2}
],
};
const person2 = Object.assign({}, person1);