JavaScript で多次元配列を反復処理し、配列内の各要素を出力しようとしています。ネストされた for ループを使用せずに多次元配列の各要素を出力する方法はありますか?
var arr = [[1, 5],[7, 4]];
for(var i in arr){
alert(i); //this displays "0", then displays "1",
//instead of printing each element in the array
//how can I make it print each element in each 2D array instead,
//without using nested for-loops for each dimension of the array?
}