I was wondering if .length can be used on a 2d array
i.e. of an array a[x][y] i want to do a .length on either the columns or the
rows... so i can do a
for( number of rows ;;) {
for( number of columns;;) {
doSomething();
}
}
type iteration through the entire array.