摘要: flatten 数组元素铺平一层 function flatten(arr){ return arr.reduce((pre, cur)=>{ return pre.concat(cur) }, []) } flattenDeep 数组元素全部铺平,采用递归的方式,当遇到元素为数组时,继续调用函数来 阅读全文
posted @ 2022-06-14 00:32 Dont 阅读(53) 评论(0) 推荐(0) 编辑