.bind()
function base(...arg){ console.log(this, ...arg ); } const boundBaseFn = base.bind("this instance || null", 1,2,3) boundBaseFn() // "this instance || null" , 1 2 3
result
Mdn Function.prototype.bind