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

Is it possible to send a variable number of arguments to a JavaScript function, from an array?

var arr = ['a','b','c']

var func = function()
{
    // debug 
    alert(arguments.length);
    //
    for(arg in arguments)
        alert(arg);
}

func('a','b','c','d'); // prints 4 which is what I want, then 'a','b','c','d'
func(arr); // prints 1, then 'Array'

I've recently written a lot of Python and it's a wonderful pattern to be able to accept varargs and send them. e.g.

def func(*args):
   print len(args)
   for i in args:
       print i

func('a','b','c','d'); // prints 4 which is what I want, then 'a','b','c','d'
func(*arr) // prints 4 which is what I want, then 'a','b','c','d'

Is it possible in JavaScript to send an array to be treated as the arguments array?

share|improve this question
2  
Note that its not a good idea to use a for - in loop with the arguments object - a 'normal' for loop iterating over the length property should be used instead – Yi Jiang Mar 15 '11 at 6:03
it's never been a problem, can you ellaborate as to why that is the case? arguments object is almost always small enough to have a negligible performance improvement for using the agruments[0..length-1] version. – Fire Crow Mar 15 '11 at 14:22

4 Answers

up vote 45 down vote accepted

Use apply:

var arr = ['a','b','c'];

var func = function() {
  alert(arguments.length);

  for(var i = 0; i < arguments.length; i++) {
    alert(arguments[i]);
  }

};

func.apply(null, arr);

Notice that null is used as the first argument of apply, that will set the this keyword to the Global object (window) inside func.

Also note that the arguments object is not really an Array, you can convert it by :

var argsArray = Array.prototype.slice.call(arguments);

And maybe is useful to you, that you can know how many arguments a function expects:

var test = function (one, two, three) {}; 
test.length == 3;

But anyway you can pass an arbitrary number of arguments...

share|improve this answer
apply or call? - – Jason S Dec 24 '09 at 17:11
@Jason: edited... – CMS Dec 24 '09 at 17:15
1  
Thanks, apply does the trick, call in this case does not work. was that written in by mistake? – Fire Crow Dec 24 '09 at 17:16
@Fire: Yes, was a mistake! – CMS Dec 24 '09 at 17:17
How do you do it if the function is actually a member of a class? Is this right? theObject.member.apply(theObject, arguments); – Baxissimo May 6 '11 at 1:06

You can actually pass as many values as you want to any javascript function. The explicitly named parameters will get the first few values, but ALL parameters will be stored in the arguments array.

To pass the arguments array in "unpacked" form, you can use apply, like so (c.f. Functional Javascript):

var otherFunc = function() {
   alert(arguments.length); // Outputs: 10
}

var myFunc = function() {
  alert(arguments.length); // Outputs: 10
  otherFunc.apply(this, arguments);
}
myFunc(1,2,3,4,5,6,7,8,9,10);
share|improve this answer
+1 great reference link – Fire Crow Dec 24 '09 at 17:21

The apply function takes two arguments; the object this will be binded to, and the arguments, represented with an array.

some_func = function (a, b) { return b }
some_func.apply(obj, ["arguments", "are", "here"])
// "are"
share|improve this answer

It's called splat operator. You can do it JavaScript using apply:

var arr = ['a','b','c','d'];
var func = function() {
    // debug 
    console.log(arguments.length);
}
func('a','b','c','d'); // prints 4 which is what I want, then 'a','b','c','d'
func(arr); // prints 1, then 'Array'
func.apply(null, arr);
share|improve this answer

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.