0 / 60 seg.

What is the result of the following code?

const dog = {
  name: 'Fido',
  age: 4,
  color: 'brown'
};
delete dog.age;
console.log('age' in dog);