I have an array of arrays with none of the elements having names that is being generated. Each sub-array will have the same number of elements but the total number of sub-arrays is variable. For example,
var arrayAll = [
[a,b,c,d,e,f],
[g,h,i,j,k,l],
[m,n,o,p,q,r]
];
I'd like to be able to access one element out of one array, i.e. just 'j', but am not sure of any notations to do it as I only have numbers. I've seen a few ways to access nested arrays but they all rely on the array having named items which I don't have.