What will be the output of the following code snippet?
let person1 = { name: 'John', age: 25 };
let person2 = person1;
console.log(person1 === person2);
What will be the output of the following code snippet?
let person1 = { name: 'John', age: 25 };
let person2 = person1;
console.log(person1 === person2);