I was browsing through the JavaScript Garden when I stumbled upon the Function.call.apply hack which is used to create "fast, unbound wrappers". It says:
Another trick is to use both call and apply together to create fast, unbound wrappers.
function Foo() {} Foo.prototype.method = function(a, b, c) { console.log(this, a, b, c); }; // Create an unbound version of "method" // It takes the parameters: this, arg1, arg2...argN Foo.method = function() { // Result: Foo.prototype.method.call(this, arg1, arg2... argN) Function.call.apply(Foo.prototype.method, arguments); };
What I don't understand is why bother using Function.call.apply when Function.apply would suffice. After all, both of them are semantically equivalent.
Function.call.applyandFunction.applycan't be the same here because the former appliesFunction.callwhile the second tries to apply theFunctionconstructor. Details in my answer, but I'll bet if Ivo Wetzel came around to answer this it his would be far more eloquent and understandable. This is rather deep stuff. I agree that it's probably not something you should use unless you want colleagues to spend, oh I don't know, a half hour trying to understand it. :) – Ray Toal Sep 18 '11 at 6:53Function.callis actually a bit misleading. It should really beFunction.prototype.call, sinceFunction.callcould be overwritten.Functionis just a function object after all. (Yes, this is hard to understand) – Pumbaa80 Sep 18 '11 at 7:21Function.call===Function.prototype.callin the absence of nasty things, I totally agree with you. But noteJSON.stringify(Object.getOwnPropertyDescriptor(Function.prototype, "call"))returns{"writable":true,"enumerable":false,"configurable":true}so the truly evil can overwriteFunction.prototype.calltoo. Yikes. – Ray Toal Sep 18 '11 at 8:02