Looking at the example given on this MDN page
const o = {a: 0};
Object.defineProperty(o, 'b', { get: function() { return this.a + 1; } });
console.log(o.b) // Runs the getter, which yields a + 1 (which is 1)
console.log(o)
Why, when I log o, why do I:
Not see it in node.js?
See it but it's greyed out in Chrome?