摘要: flat 数组扁平化,第三种和第四种主要用于面试问题。 // 递归实现 function flat1(arr) { let res = []; for (const item of arr) { if (Array.isArray(item)) { res = res.concat(flat1(it 阅读全文
posted @ 2020-09-11 10:31 alohaplat 阅读(235) 评论(0) 推荐(0)