效果:
const arr = [1, [2, [3, [4, 5]]], 6];
// => 输出结果:[1, 2, 3, 4, 5, 6]
方法:
const res1 = arr.flat(Infinity);
效果:
const arr = [1, [2, [3, [4, 5]]], 6];
// => 输出结果:[1, 2, 3, 4, 5, 6]
方法:
const res1 = arr.flat(Infinity);
本文标题:数组扁平化(一个多维数组变为一个一维数组)
本文链接:https://www.haomeiwen.com/subject/drxjpktx.html
网友评论