Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
19  
I've used call and apply almost every day for the past three weeks and I still can't remember the difference. – JustinY May 16 '12 at 16:15
92  
Think of a in apply for array of args and c in call for columns of args. – Larry Battle Jun 12 '12 at 6:17

4 Answers

up vote 548 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.

Pseudo syntax:

theFunction.apply(valueForThis, arrayOfArgs)

theFunction.call(valueForThis, arg1, arg2, ...)

Sample code:

function theFunction(name, profession) {
    alert("My name is " + name + " and I am a " + profession + ".");
}
theFunction("John", "fireman");
theFunction.apply(undefined, ["Susan", "school teacher"]);
theFunction.call(undefined, "Claude", "mathematician");
share|improve this answer
16  
Also, using apply() you can specify what this would refer to within that function. – Robin Maben Apr 25 '12 at 10:32
59  
@RobinMaben so does call. It's the first argument in both. – entonio May 10 '12 at 1:19
8  
@entonio: Then I stand corrected. Since that wouldn't count as a difference. – Robin Maben May 10 '12 at 6:32
7  
One thing to add is that the args must be a numerical array ([]). Associative arrays ({}) will not work. – Kevin Schroeder Jul 28 '12 at 16:18
33  
@KevinSchroeder: In javascript parlance, [] is called an array, {} is called an object. – Martijn Jan 10 at 15:19
show 2 more comments

K. Scott Allen has a nice writeup 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"]);
share|improve this answer
15  
the second parameter of apply() and call() is optional, not required. – runrunforest Jul 29 '11 at 4:01

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.

share|improve this answer
7  
An old topic but this answer proved very helpful to me. It's the only one that really addresses when it would be good practice to use one over the other. – Nealbo May 24 '12 at 14:02

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

share|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 '12 at 20:30
5  
Interestingly even without the array, call is still much faster. jsperf.com/applyvscallvsfn2 – jezternz May 11 '12 at 1:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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