+1 vote
in JavaScript by
In multidimensional array mySubject, which of the following will allow assigning the value 100 in position 5 of the third mySubject array?

mySubject[3][4] = 100

mySubject[3][5] = 100

mySubject[2][4] = 100

mySubject[4][2] = 100

mySubject[5][3] = 100

1 Answer

0 votes
by

mySubject[2][4] = 100

...