What does [1,2,3][1,2] means in Javascript? I do not understand what its supposed to do, and i have no clue how could i google such thing.
Any ideas?
I assum
[1,2,3]
<obj>[p]
1, 2
2
So the [1,2,3][1,2] as a whole accesses the index 2 of the array, and yields 3.
[1,2,3][1,2]
3