这篇文章将为大家详细讲解有关javascript中reduce函数怎么用,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。reduce 函数语法: arr.reduce(callback(accum
这篇文章将为大家详细讲解有关javascript中reduce函数怎么用,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
语法: arr.reduce(callback(accumulator, currentValue[, index[, array]])[, initialValue])
方法功能: 对数组中的每个元素执行一个由您提供的reducer函数(升序执行),将其结果汇总为单个返回值。
返回:函数累计处理的结果。
自定义函数:myReduce。
Array.prototype.myReduce = function(callbackFn, initialValue) { if (typeof callbackFn !== 'function') throw ('callbackFn参数必须是函数'); let element = this, len = element.length || 0, index = 0, result; if (arguments.length >= 2) { result = arguments[1]; } else { while (index < len && !(index in element)) index++; if (index >= len) throw new TypeError('Reduce of empty array ' + 'with no initial value'); result = element[index++]; } while (index < len) { if (index in element) result = callbackFn(result, element[index], index, element); index++; } return result;}
关于“JavaScript中reduce函数怎么用”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
--结束END--
本文标题: JavaScript中reduce函数怎么用
本文链接: https://lsjlt.com/news/287464.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0