const obj = { name: "Ada", greet() { return `hi ${this.name}`; } }; const g = obj.greet; console.log(g());