+ 2
Anyone: How do I show the length of multidimensional arrays, so that it also shows whats in the other curved parenthese?
2 Antworten
+ 6
array1[0].length
// length of 1st 'inner' array
array1[1].length
// length of 2nd 'inner' array
Array[2].length
// length of 3rd 'inner' array
array1.length
// length of 'outer' array
+ 1
thx