使用reduceRight()JavaScript中的方法从右到左同时对数组的两个值应用函数,以将其减小为单个值。
以下是参数-
callback- 对数组中的每个值执行的函数。
initialValue- 用作首次调用回调的第一个参数的对象
您可以尝试运行以下代码以了解如何使用reduceRight()JavaScript中的方法-
<html>
<head>
<title>JavaScript Array reduceRight Method</title>
</head>
<body>
<script>
if (!Array.prototype.reduceRight)
{
Array.prototype.reduceRight = function(fun /*, initial*/)
{
var len = this.length;
if (typeof fun != "function")
throw new TypeError();
//如果没有初始值,则没有值返回,空数组
if (len == 0 && arguments.length == 1)
throw new TypeError();
var i = len - 1;
if (arguments.length >= 2)
{
var rv = arguments[1];
} else {
do
{
if (i in this)
{
rv = this[i--];
break;
}
//如果数组不包含任何值,则没有要返回的初始值
if (--i < 0)
throw new TypeError();
}
while (true);
}
for (; i >= 0; i--)
{
if (i in this)
rv = fun.call(null, rv, this[i], i, this);
}
return rv;
};
}
var total = [0, 1, 2, 3].reduceRight(function(a, b) { return a + b; });
document.write("total is : " + total );
</script>
</body>
</html>