What will be the output of the following code?
const obj1 = { name: "John", age: 30 };
const clone = { ...obj1 };
console.log(clone === obj1);
What will be the output of the following code?
const obj1 = { name: "John", age: 30 };
const clone = { ...obj1 };
console.log(clone === obj1);