Array.prototype.concat.apply方法拍平多维数组。
使用 Array.prototype.concat.apply 拍平数组
Array.prototype.concat.apply([],[1,2,3,[4,5,[6,7]],8,9]) // [1,2,3, [4,5,[6,7]] ,8,9]
// [1, 2, 3, 4, 5, [6,7], 8, 9]
使用 Array.prototype.concat.apply 拍平数组
Array.prototype.concat.apply([],[1,2,3,[4,5,[6,7]],8,9]) // [1,2,3, [4,5,[6,7]] ,8,9]
// [1, 2, 3, 4, 5, [6,7], 8, 9]