Consider the following code snippet:
const obj = { name: 'John', age: 30 };
obj.age = 35;
console.log(obj.age);
What will be the output of the console.log statement?
Consider the following code snippet:
const obj = { name: 'John', age: 30 };
obj.age = 35;
console.log(obj.age);
What will be the output of the console.log statement?