JavaScript 数组 reduce()方法
描述
Javascript数组的 reduce() 方法同时针对数组的两个值(从左到右)应用函数,以将其减少为一个单一的值。
语法
其语法如下所示−
array.reduce(callback[, initialValue]);
参数详情
- callback − 数组中每个值执行的函数。
-
initialValue − 作为回调的第一个参数的对象。
返回值
返回数组的降维单一值。
兼容性
该方法是ECMA-262标准的JavaScript扩展,因此在其他实现标准的环境中可能不存在。为了使其生效,您需要在脚本的顶部添加以下代码。
if (!Array.prototype.reduce) {
Array.prototype.reduce = function(fun /*, initial*/) {
var len = this.length;
if (typeof fun != "function")
throw new TypeError();
// no value to return if no initial value and an empty array
if (len == 0 && arguments.length == 1)
throw new TypeError();
var i = 0;
if (arguments.length >= 2) {
var rv = arguments[1];
} else {
do {
if (i in this) {
rv = this[i++];
break;
}
// if array contains no values, no initial value to return
if (++i >= len)
throw new TypeError();
}
while (true);
}
for (; i < len; i++) {
if (i in this)
rv = fun.call(null, rv, this[i], i, this);
}
return rv;
};
}
示例
尝试以下示例。
<html>
<head>
<title>JavaScript Array reduce Method</title>
</head>
<body>
<script type = "text/javascript">
if (!Array.prototype.reduce) {
Array.prototype.reduce = function(fun /*, initial*/) {
var len = this.length;
if (typeof fun != "function")
throw new TypeError();
// no value to return if no initial value and an empty array
if (len == 0 && arguments.length == 1)
throw new TypeError();
var i = 0;
if (arguments.length >= 2) {
var rv = arguments[1];
} else {
do {
if (i in this) {
rv = this[i++];
break;
}
// if array contains no values, no initial value to return
if (++i >= len)
throw new TypeError();
}
while (true);
}
for (; i < len; i++) {
if (i in this)
rv = fun.call(null, rv, this[i], i, this);
}
return rv;
};
}
var total = [0, 1, 2, 3].reduce(function(a, b){ return a + b; });
document.write("total is : " + total );
</script>
</body>
</html>
输出
total is : 6