What will be the output of the following code snippet?
let person = { name: 'John', age: 25 };
person.location = 'New York';
console.log(Object.keys(person).length);
What will be the output of the following code snippet?
let person = { name: 'John', age: 25 };
person.location = 'New York';
console.log(Object.keys(person).length);