乐趣区

JS实现二维数组横纵列转置的方法

如上图所示,一个高效的代码是:

var newArray = arr[0].map(function(col, i) {return arr.map(function(row) {return row[i];
    });
});
退出移动版