I can't wrap my mind around this quirk.

[1,2,3,4,5,6][1,2,3]; // 4
[1,2,3,4,5,6][1,2]; // 3

I know [1,2,3] + [1,2] = 1,2,31,2, but I can't find what type or operation is being performed.

link|improve this question

5  
@BalusC: The two are completely unrelated other than that they both involve arrays. – Lightness Races in Orbit Sep 14 '11 at 18:21
3  
@Ray: Similarly, that is not a duplicate at all. – Lightness Races in Orbit Sep 14 '11 at 18:21
5  
@BalusC: Huh? What complete utter nonsense is this. The two are clearly not the same question. That one doesn't have a single comma in it whatsoever. Read this question's answers to gain an understanding of the code that the OP posted, and then you will see. :) – Lightness Races in Orbit Sep 14 '11 at 18:22
2  
@dmckee: Nonsense. He saw syntax he didn't understand and asked about it. – Lightness Races in Orbit Sep 15 '11 at 8:42
3  
Who downvoted this? I didn't even know about the comma operator prior to this. This is useful and interesting stuff. – Hyangelo Sep 20 '11 at 18:12
show 10 more comments
feedback

4 Answers

up vote 138 down vote accepted
[1,2,3,4,5,6][1,2,3];
      ^         ^
      |         |
    array       + — array subscript access operation,
                    where index is `1,2,3`,
                    which is an expression that evaluates to `3`.

The second [...] cannot be an array, so it's an array subscript operation. And the contents of a subscript operation are not a delimited list of operands, but a single expression.

Read more about the comma operator here.

link|improve this answer
8  
+1 that is a great perfectly formatted easy to follow explanation ty. – Loktar Sep 14 '11 at 18:19
@Loktar: You're welcome. :) – Lightness Races in Orbit Sep 14 '11 at 18:19
1  
correct.. last index used.. more examples: [1,2,3,4,5,6][1,2,3] === [1,2,3,4,5,6][3]; [1,1,1,5,1,1][3] === [1,1,1,5,1,1][1,2,3]; in this way [1,1,1,5,1,1][3] == 5 – mastak Sep 14 '11 at 18:24
3  
@Shef: Read up about the comma operator. This is what it does. I even provided a handy link in my answer that takes you to all the information you want about it. – Lightness Races in Orbit Sep 14 '11 at 18:32
feedback

Because (1,2) == 2. You've stumbled across the comma operator.

Unless commas appear in a declaration list, parameter list, object or array literal, they act like any other binary operator. x, y evaluates x, then evaluates y and yields that as the result.

link|improve this answer
feedback

It's taking the last item of the second list as an index. Then:

[1,2,3,4,5,6][3] = 4
[1,2,3,4,5,6][2] = 3
link|improve this answer
3  
+1 for simple answer – Amir Ismail Sep 21 '11 at 8:50
2  
Simple but slightly misleading; in fact there is no "second list". – Lightness Races in Orbit Oct 5 '11 at 14:20
Granted, not strictly a second list, but an array followed by another (apparent) array. – Joel Alejandro Oct 5 '11 at 17:10
feedback
[1,2,3,4,5,6][1,2,3];

Here the second box i.e. [1,2,3] becomes [3] i.e. the last item so the result will be 4 for example if you keep [1,2,3,4,5,6] in an array

var arr=[1,2,3,4,5,6];

arr[3]; // as [1,2,3] in the place of index is equal to [3]

similarly

*var arr2=[1,2,3,4,5,6];

 // arr[1,2] or arr[2] will give 3*

But when you place a + operator in between then the second square bracket is not for mentioning index. It is rather another array That's why you get

[1,2,3] + [1,2] = 1,2,31,2

i.e.

var arr_1=[1,2,3];

var arr_2=[1,2];

arr_1 + arr_2; // i.e.  1,2,31,2

Basically in the first case it is used as index of array and in the second case it is itself an array.

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.