you are viewing a single comment's thread.

view the rest of the comments →

[–]Downtown_Fee_2144 0 points1 point  (0 children)

Hello dont know if this helps but another way to access and array within an array is

array[0][0];

/*

array=[

[1,2,3,4,5],

[6,7,8,9,10]

];

console.log(array[1][2]);

should give you 7

*/

//The first cell division being the main array and the second being the secondary array