数组递归降维代码


数组递归降维代码

Array.prototype.myReduce = function () {
let newArr = [];
for (let item of this) {
   if (Array.isArray(item)) {
       newArr = newArr.concat(item.myReduce());
        } else {
            newArr.push(item);
            }
    }
return newArr;  
};
// 多维数组
let arr = [1, 2, [3, 4, [5, 6, [7, 8, [9, 10]]]]];
 console.log(arr.myReduce());


扫描二维码,在手机上阅读

推荐阅读:

Postman安装汉化版及使用

UniAPP工程化目录配置

评 论
avatar
小小的人
  • Chrome
  • Windows10
你干嘛
2023-10-10 17:26 回复