What value is obtained with object.hasOwnProperty('name') in the following code?
const object = {
name: 'Gabriela',
age: 30
};
What value is obtained with object.hasOwnProperty('name') in the following code?
const object = {
name: 'Gabriela',
age: 30
};