Login
Remember
Register
Ask a Question
In multidimensional array mySubject, which of the following will allow assigning the value 100 in position 5 of the third mySubject array?
+1
vote
asked
Feb 6, 2020
in
JavaScript
by
rajeshsharma
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
#multidimensional
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Feb 7, 2020
by
SakshiSharma
mySubject[2][4] = 100
...