当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Array reduce()用法及代码示例


在本教程中,我们将借助示例了解 JavaScript Array reduce() 方法。

reduce() 方法对数组的每个元素执行一个 reducer 函数并返回一个输出值。

示例

const message = ["JavaScript ", "is ", "fun."];

// function to join each string elements
function joinStrings(accumulator, currentValue) {
  return accumulator + currentValue;
}

// reduce join each element of the string
let joinedString = message.reduce(joinStrings);
console.log(joinedString);

// Output: JavaScript is fun.

reduce() 语法

用法:

arr.reduce(callback(accumulator, currentValue), initialValue)

这里,arr 是一个数组。

参数:

reduce() 方法包含:

  • callback- 在每个数组元素上执行的函数(如果没有,则第一个元素除外initialValue提供)。它吸收
    • accumulator - 它累积回调的返回值。
    • currentValue - 从数组传递的当前元素。
  • initialValue(可选)- 将在第一次调用时传递给 callback() 的值。如果未提供,则第一个元素在第一次调用时充当 accumulator,而 callback() 不会在其上执行。

注意:调用reduce()在没有的空数组上initialValue会抛出TypeError.

返回:

  • 返回减少数组后产生的单个值。

注意

  • reduce() 从左到右为每个值执行给定的函数。
  • reduce() 不会更改原始数组。
  • 提供 initialValue 几乎总是更安全。

示例 1:数组所有值的总和

const numbers = [1, 2, 3, 4, 5, 6];

function sum_reducer(accumulator, currentValue) {
  return accumulator + currentValue;
}

let sum = numbers.reduce(sum_reducer);
console.log(sum); // 21

// using arrow function
let summation = numbers.reduce(
  (accumulator, currentValue) => accumulator + currentValue
);
console.log(summation); // 21

输出

21
21

示例 2:减去数组中的数字

const numbers = [1800, 50, 300, 20, 100];

// subtract all numbers from first number
// since 1st element is called as accumulator rather than currentValue
// 1800 - 50 - 300 - 20 - 100
let difference = numbers.reduce(
  (accumulator, currentValue) => accumulator - currentValue
);
console.log(difference); // 1330

const expenses = [1800, 2000, 3000, 5000, 500];
const salary = 15000;

// function that subtracts all array elements from given number
// 15000 - 1800 - 2000 - 3000 - 5000 - 500
let remaining = expenses.reduce(
  (accumulator, currentValue) => accumulator - currentValue,
  salary
);
console.log(remaining); // 2700

输出

1330
2700

这个例子清楚地解释了传递 initialValue 和不传递 initialValue 之间的区别。

示例 3:从数组中删除重复项

let ageGroup = [18, 21, 1, 1, 51, 18, 21, 5, 18, 7, 10];
let uniqueAgeGroup = ageGroup.reduce(function (accumulator, currentValue) {
  if (accumulator.indexOf(currentValue) === -1) {
    accumulator.push(currentValue);
  }
  return accumulator;
}, []);

console.log(uniqueAgeGroup); // [ 18, 21, 1, 51, 5, 7, 10 ]

输出

[
  18, 21,  1, 51,
   5,  7, 10
]

示例 4:按属性对对象进行分组

let people = [
  { name: "John", age: 21 },
  { name: "Oliver", age: 55 },
  { name: "Michael", age: 55 },
  { name: "Dwight", age: 19 },
  { name: "Oscar", age: 21 },
  { name: "Kevin", age: 55 },
];

function groupBy(objectArray, property) {
  return objectArray.reduce(function (accumulator, currentObject) {
    let key = currentObject[property];
    if (!accumulator[key]) {
      accumulator[key] = [];
    }
    accumulator[key].push(currentObject);
    return accumulator;
  }, {});
}

let groupedPeople = groupBy(people, "age");
console.log(groupedPeople);

输出

{
  '19': [ { name: 'Dwight', age: 19 } ],
  '21': [ { name: 'John', age: 21 }, { name: 'Oscar', age: 21 } ],
  '55': [
    { name: 'Oliver', age: 55 },
    { name: 'Michael', age: 55 },
    { name: 'Kevin', age: 55 }
  ]
}

相关用法


注:本文由纯净天空筛选整理自 Javascript Array reduce()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。