Make a shallow copy of the object below:
// You should get:
console.log(man === shallowCopy) //false
console.log(man.mother === shallowCopy.mother) //trueMake a shallow copy of the object below:
// You should get:
console.log(man === shallowCopy) //false
console.log(man.mother === shallowCopy.mother) //trueSample Input 1:
Sample Output 1:
false
trueCreate a free account to access the full topic