What value is obtained when accessing myObject.age after executing the following code?
const myObject = {
name: 'Carlos',
};
myObject.age = 30;
What value is obtained when accessing myObject.age after executing the following code?
const myObject = {
name: 'Carlos',
};
myObject.age = 30;