const person = { name: 'Bob' }
Object.defineProperty(person, 'age', { value: 21 })
console.log(person)
this code result in different output
in chrome print {name: "Bob", age: 21}
however in Node (v15.6.0), print { name: 'Bob' }
what cause that?