const proto = { get hi() { return `hi ${this.name}`; } }; const o = Object.create(proto); o.name = "Ada"; console.log(o.hi);