reduce用法

Posted mailyuan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了reduce用法相关的知识,希望对你有一定的参考价值。

返回一个新数组,如果想返回一个数组,则第二个参数为[], 想返回字符串,则第二个参数为‘‘

       const keyMaterialList = oldArr && oldArr.reduce((newArray: any, item: any) => {
            item.key = item.id;
            newArray.push(item);
            return newArray;
        }, []);

 

以上是关于reduce用法的主要内容,如果未能解决你的问题,请参考以下文章

几个关于js数组方法reduce的经典片段

几个关于js数组方法reduce的经典片段

reduce的用法

Amazon Elastic Map Reduce:输入片段大小是不是重要

map、foreach、reduce、filters的用法及区别

c_cpp 加载源图像固定用法(代码片段,不全)