const x = 1; const obj = { x: 2, }; function func() { console.log(this.x); } const bound = obj.bind(func); bound();
bind
Function.prototype
Object.prototype