console.log("array flat"); // 1. 因为只有数组才有 concat 方法,所以这里必须写入初始值 空数组 只能打平一层 // const flat = (list) => list.reduce((a, b) => a.concat(b), []); // 2. 直接用 concat 和扩展运算符,只能打平一层 // const flat = (list) => [].concat(...list); // 3. 加一个递归,可以打平深层数组 // const flat = (list) => // list.reduce((a, b) => a.concat(Array.isArray(b) ? flat(b) : b), []); // 4. 支持传入打平的深度 const flat = (list, depth) => { if (depth === 1) { return list; } return list.reduce((a, b) => { return a.concat(Array.isArray(b) ? flat(b, depth - 1) : b); }, []); }; // 测试用例 console.log(flat([1, 2, 3, [4, 5, [6, 7, [0, 9, 0], 8], 6], 8], 5));
标签:flat,const,打平,list,js,数组,手写,concat From: https://www.cnblogs.com/beileixinqing/p/16598531.html