никак не определить, да?
const o = {a: 0}; Object.defineProperty(o, 'b', { get: function() { return this.a + 1; } }); console.log(o.b)
да можно. в get делать return this._name, а в set this._name = value
Обсуждают сегодня