What is the result of the following code?
const dog = {
name: 'Fido',
age: 4,
color: 'brown'
};
delete dog.age;
console.log('age' in dog);
What is the result of the following code?
const dog = {
name: 'Fido',
age: 4,
color: 'brown'
};
delete dog.age;
console.log('age' in dog);