+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

Related questions

0 votes
asked Dec 8, 2022 in Data Structures & Algorithms by sharadyadav1986
0 votes
asked Feb 26 in JavaScript by DavidAnderson
...