数组扁平化
Posted baixiaoxiao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组扁平化相关的知识,希望对你有一定的参考价值。
方法一:
var arr=[1,[2,[3,2,3],4,1],3]
function fun(arr){
return arr.reduce((pre,item)=>{
return pre.concat(Array.isArray(item)?fun(item):item)
},[])
}
const a=fun(arr)
console.log(a);
方法二:
var arr=[1,[2,[3,2,3],4,1],3]
function fun(arr){
while (arr.some(item=>Array.isArray(item))){
arr=[].concat(...arr)
}
return arr
}
const a=fun(arr)
console.log(a);
以上是关于数组扁平化的主要内容,如果未能解决你的问题,请参考以下文章