Array.Reduce()方法对数组的每个元素执行提供给用户的函数(由用户提供),并给出单个输出。在给定的示例中,提供的函数(由用户提供的函数为加法)在每个元素上执行通过返回单个输出(10)获得数组(1,2,3,4)的数组。
<html> <body> <p>Sum of numbers in array: </p> <script> const array = [1, 2, 3, 4]; const sum = (firstValue, lastValue) => firstValue + lastValue; document.write(array.reduce(sum)); </script> </body> </html>
Sum of numbers in array:10