function fn1() { console.log(1); } function fn2() { console.log(2); } fn1.call(fn2); fn1.call.call(fn2); fn1.call.call.call.call.call(fn1); Function.prototype.call.call(fn1); Function.prototype.call(fn1);
There was an error while loading. Please reload this page.