要求:把数组arr=[12,34,[122,324],[222,[333]];扁平化
思路:创建一个新数组,循环原数组判断每一项是否是数组是的话先递归,在调用const或push方法,不是直接const或push。
方法一:使用数组的concat方法(concat可以传入数组或值,合并到一个新的数组中。)
let arr = [12,34,[122,324],[222,[333]]] function flatten(arr) { let res = []; arr.forEach(el=>{ if(el instanceof Array){ let newArr = flatten(el); res = res.concat(newArr); }else{ res = res.concat(el); } }) return res } let newArr = flatten(arr); console.log(newArr);// [ 12, 34, 122, 324, 222, 333 ]
方法二:使用数组的push方法
let arr = [12,34,[122,324],[222,[333]]] function flatten(arr) { let res = []; arr.forEach(el=>{ if(el instanceof Array){ let newArr = flatten(el); res = res.push(newArr); }else{ res = res.push(el); } }) return res } let newArr = flatten(arr); console.log(newArr);// [ 12, 34, 122, 324, 222, 333 ]
标签:el,arr,扁平化,res,JS,let,数组,newArr,手写 From: https://www.cnblogs.com/zimengxiyu/p/16875689.html