up vote 4 down vote favorite
1
share [g+] share [fb]

Why does this work (returns "one, two, three"):

var words = ['one', 'two', 'three'];
$("#main").append('<p>' + words.join(", ") + '</p>');

and this work (returns "the list: 111"):

var displayIt = function() {
    return 'the list: ' + arguments[0];
}   
$("#main").append('<p>' + displayIt('111', '222', '333') + '</p>');

but not this (returns blank):

var displayIt = function() {
    return 'the list: ' + arguments.join(",");
}   
$("#main").append('<p>' + displayIt('111', '222', '333') + '</p>');

What do I have to do to my "arguments" variable to be to use .join() on it?

link|improve this question

80% accept rate
I've amended my answer to take into account your updated question -- specifically, the "what do I have to do to make this work?" part. – John Feminella Jan 19 '10 at 4:58
feedback

6 Answers

up vote 10 down vote accepted

It doesn't work because the arguments object is not an array, although it looks like it. It has no join method:

>>> var d = function() { return '[' + arguments.join(",") + ']'; }
>>> d("a", "b", "c")
TypeError: arguments.join is not a function

To convert arguments to an array, you can do:

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

Now join will work:

>>> var d = function() {
  var args = Array.prototype.slice.call(arguments);
  return '[' + args.join(",") + ']';
}
>>> d("a", "b", "c");
"[a,b,c]"

Alternatively, you can use jQuery's makeArray, which will try to turn "almost-arrays" like arguments into arrays:

var args = $.makeArray(arguments);

Here's what the Mozilla reference (my favorite resource for this sort of thing) has to say about it:

The arguments object is not an array. It is similar to an array, but does not have any array properties except length. For example, it does not have the pop method. ...

The arguments object is available only within a function body. Attempting to access the arguments object outside a function declaration results in an error.

link|improve this answer
+1...beat me to it. – czarchaic Jan 19 '10 at 4:52
or Array.join(arguments, ",") (like Array.forEach(arguments, func);) – Anonymous Jan 19 '10 at 4:59
both of those work, makes sense, thanks – Edward Tanguay Jan 19 '10 at 5:03
feedback

If you are not interested on other Array.prototype methods, and you want simply to use join, you can invoke it directly, without converting it to an array:

var displayIt = function() {
    return 'the list: ' + Array.prototype.join.call(arguments, ',');
};

Also you might find useful to know that the comma is the default separator, if you don't define a separator, by spec the comma will be used.

link|improve this answer
feedback

Just use the jQuery utility function makeArray

arguments is not an Array, it is an object. But, since it so "array-like", you can call the jQuery utility function makeArray to make it work:

var displayIt = function() {
    return 'the list: ' + $.makeArray(arguments).join(",");
}   
$("#main").append('<p>' + displayIt('111', '222', '333') + '</p>');

Which will output:

<p>the list: 111,222,333</p>
link|improve this answer
feedback

arguments is not a jQuery object, just a regular JavaScript object. Extend it before you try to call .join(). I think you would write:

return 'the list:' + $(arguments)[0];

(I'm not too familiar with jQuery, only Prototype, so I hope this is not completely bogus.)

Edit: It's wrong! But in his response, Doug Neiner describes what I'm trying to accomplish.

link|improve this answer
2  
This isn't quite right; arguments is not an array. Instead, it's an "array-like object". – John Feminella Jan 19 '10 at 4:51
A normal JS Array supports join. – Doug Neiner Jan 19 '10 at 4:52
if arguments is not an array, how come arguments[0] and arguments[1] give me the correct values passed to the function? – Edward Tanguay Jan 19 '10 at 4:53
Great, I learned something. Thanks :) – Kevin Conner Jan 19 '10 at 4:55
Edward: JavaScript objects can respond to [x] like they respond to .foo, it's not something that only array objects can do like in other languages. I think. I have been wrong before ;) – Kevin Conner Jan 19 '10 at 4:56
show 1 more comment
feedback

You can use typeof to see what's happening here:

>>> typeof(['one', 'two', 'three'])
"object"
>>> typeof(['one', 'two', 'three'].join)
"function"
>>> typeof(arguments)
"object"
>>> typeof(arguments.join)
"undefined"

Here you can see that typeof returns "object" in both cases but only one of the objects has a join function defined.

link|improve this answer
feedback

I don't know if there's a simple way to convert arguments into an array, but you can try this:

var toreturn = "the list:";
for(i = 0; i < arguments.length; i++)
{
   if(i != 0) { toreturn += ", "; }
   toreturn += arguments[i];
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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