const x = 1; const obj = { x: 2, method() { console.log(this.x); }, }; const func = obj.method.bind({ x: 3 }); func();