0 / 60 seg.

What will be shown when executing the following code?

const person = { name: 'Carlos', age: 30 };
const newPerson = { ...person, city: 'Madrid' };
console.log('city' in newPerson);