JS实现二维数组横纵列转置的方法 jiezi 5 年前 如上图所示,一个高效的代码是: var newArray = arr[0].map(function(col, i) {return arr.map(function(row) {return row[i]; }); });