I work on web site with pre-existent javascript code.
I found out that in this code, it used to retrieve an array item in this way:
var value = myArray[0, 1];
The result is the second field of the array, but I can't understand the difference with a code like:
var value = myArray[1];
I have tried to change the number before comma but nothing change, it reads always the second item of the array.