0 / 60 seg.

What will be the output of the following code?

const obj1 = { name: "John", age: 30 };
const obj2 = JSON.parse(JSON.stringify(obj1));
obj1.name = "Jane";
console.log(obj2.name);