What is the difference between using call and apply to invoke a function?

var func = function(){
  alert('hello!');
};

func.apply();

vs

func.call();

Are there performance differences between the two methods? When is it best to use call over apply and vice versa?

link|improve this question

I've used call and apply almost every day for the past three weeks and I still can't remember the difference. – JustinY 3 hours ago
feedback

5 Answers

up vote 101 down vote accepted

The main difference is that apply lets you invoke the function with arguments as an array; call requires the parameters be listed explicitly.

See here and here.

link|improve this answer
Are they both supported by the majority of browsers? I seem to remember reading that call() was more of an IE thing. – chaiguy Jun 23 '11 at 1:31
+1 superb reference – Sunny Jan 28 at 14:24
2  
Also, using apply() you can specify what this would refer to within that function. – Robin Maben Apr 25 at 10:32
@RobinMaben so does call. It's the first argument in both. – entonio May 10 at 1:19
@entonio: Then I stand corrected. Since that wouldn't count as a difference. – Robin Maben May 10 at 6:32
feedback

K. Scott Allen has a nice writeup write up on the matter.

Basically, they differ on how they handle function arguments.

The apply() method is identical to call(), except apply() requires an array as the second parameter. The array represents the arguments for the target method."

So:

// assuming you have f
function f(message) { ... }
f.call(receiver, "test");
f.apply(receiver, ["test"]);
link|improve this answer
7  
the second parameter of apply() and call() is optional, not required. – runrunforest Jul 29 '11 at 4:01
feedback

To answer the part about when to use each function, use apply if you don't know the number of arguments you will be passing, or if they are already in an array or array-like object (like the arguments object to forward your own arguments. Use call otherwise, since there's no need to wrap the arguments in an array.

f.call(thisObject, a, b, c); // Fixed number of arguments

f.apply(thisObject, arguments); // Forward this function's arguments

var args = [];
while (...) {
    args.push(some_value());
}
f.apply(thisObject, args); // Unknown number of arguments

When I'm not passing any arguments (like your example), I prefer call since I'm calling the function. apply would imply you are applying the function to the (non-existent) arguments.

There shouldn't be any performance differences, except maybe if you use apply and wrap the arguments in an array (e.g. f.apply(thisObject, [a, b, c]) instead of f.call(thisObject, a, b, c)). I haven't tested it, so there could be differences, but it would be very browser specific. It's likely that call is faster if you don't already have the arguments in an array and apply is faster if you do.

link|improve this answer
feedback

While this is an old topic, I just wanted to point out that .call is slightly faster than .apply. I can't tell you exactly why, but I'd guess that since .apply requires an array, JavaScript must first parse the array before running the function.

See jsPerf, http://jsperf.com/test-call-vs-apply/3

link|improve this answer
This depends on what the function does with the parameters/array, if it doesn't need to process the array, does it take less time? – Relic Mar 1 at 20:30
Interestingly even without the array, call is still much faster. jsperf.com/applyvscallvsfn2 – jezternz May 11 at 1:42
feedback

the apply() method is like call() method, except that arguments to be passed to the function are specified as an Array

function.apple(obj, [1.2]);
link|improve this answer
4  
Did we really need a duplicate answer for this? – Soren Apr 1 at 23:05
Really I did not read the above answers guys. It is really duplicate answer :) – adadboy May 3 at 13:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.