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.
|
I can't wrap my mind around this quirk.
I know |
|||||||||||||||||||||
|
The second |
|||||||||||||||
|
|
Because Unless commas appear in a declaration list, parameter list, object or array literal, they act like any other binary operator. |
|||
|
|
|
It's taking the last item of the second list as an index. Then:
|
|||||||||||
|
Here the second box i.e.
similarly
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
i.e.
Basically in the first case it is used as index of array and in the second case it is itself an array. |
||||
|
|