We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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);