Home > Web Front-end > JS Tutorial > body text

Parse JavaScript array method reduce

高洛峰
Release: 2016-12-28 09:48:47
Original
1081 people have browsed it

Array.prototype.reduce()

Overview

The reduce() method is an instance method (shared method) of the array and can be called by the instance object of the array. The reduce() method receives a function as an accumulator, and each value in the array (from left to right) is reduced to one value.

Syntax

arr.reduce(callback[, initialValue]) {}

Parameters

Four parameters can be passed in the callback function.

previousValue: The value returned by the last callback function, or the provided initial value (initialValue)

currentValue: the currently processed element in the array

currentIndex: current The index of the processed element in the array, that is, the index of currentValue. If there is an initialValue initial value, it starts from 0. If it does not start from 1

array: the array where reduce is called

initialValue: available Select parameters, as the first parameter of the first callback call

Return value

reduce() return value is the result returned by the last callback function call

Description

reduce executes the callback function for each element in the array in sequence, excluding elements that are deleted or never assigned a value in the array, and accepts four parameters:

previousValu Previous value

currentValue current value

currentIndex index of the current value

array array

When the callback function is executed for the first time, previousValue and currentValue may be one of two different values. One, if reduce has an initialValue parameter, then previousValue is equal to initialValue, and currentValue is equal to the first value in the array; if reduce has no initialValue parameter, then previousValue is equal to the first value in the array, and currentValue is equal to the second value in the array. .

Note: If there is no initialValue parameter, reduce starts executing the callback function from index 1, skipping the first index. If there is an initialValue parameter, reduce will execute the callback starting from index 0

If the array is empty and there is no initialValue parameter, a TypeError will be thrown. If the array has only one element and no initialValue, or there is initialValue but the array is empty, this unique value is returned directly without calling the callback function.

Generally speaking, it is safer to provide an initialValue initial value, because if not, the following output will appear.

//没有提供initialValue
function foo(){
 return [1,2,3,4,5].reduce((x, y) => x + y); //15
};
console.log(foo.call(this));
function foo(){
 return [].reduce((x, y) => x + y); //TypeError
};
console.log(foo.call(this));
//提供initialValue
function foo(){
 return [].reduce((x, y) => x + y, 0); //0
};
console.log(foo.call(this));
Copy after login

How reduce() works

[0, 1, 2, 3, 4].reduce((previousValue, currentValue, index, array) => previousValue + currentValue);
Copy after login

The callback is executed four times. The parameters and return values ​​​​of each time are as follows:

Parse JavaScript array method reduce

# The return value of ##reduce is the return value (10) of the last time the callback function was called.

If the initial value is passed into reduce as the second parameter, the result is as follows:

[0, 1, 2, 3, 4].reduce((previousValue, currentValue, index, array) => previousValue + currentValue, 10);
Copy after login

Parse JavaScript array method reduce

The return value of the last function call (20 ) is returned as the result of the reduce function

Note: adding the initialValue parameter will call the callback function one more time

Example question

Add all items in the array

let sum = [0, 1, 2, 3, 4].reduce((x, y) => x + y, 0); 
// 10
Copy after login

Flatten a two-dimensional array

let arr = [[1, 2], [3, 4], [5, 6]].reduce((x, y) => x.concat(y), []);
// [1, 2, 3, 4, 5, 6]
Copy after login
The above is the entire content of this article. I hope that the content of this article can bring some help to everyone's study or work. I also hope to support the PHP Chinese website!

For more articles related to parsing JavaScript array method reduce, please pay attention to the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!