how to use .reduce in javascript code example
Example 1: javascript reduce
var array = [36, 25, 6, 15];
array.reduce(function(accumulator, currentValue) {
return accumulator + currentValue;
}, 0);
Example 2: how to use reduce javascript
const sum = array.reduce((accumulator, element) => {
return accumulator + element;
}, 0);
const product = array.reduce((accumulator, element) => {
return accumulator * element;
}, 1);
Example 3: reduce javascript
const sum = array.reduce((accumulator, element[, idx[, sourceArray]]) => {
return accumulator + idx * 2 + element
}, 0);
Example 4: reduce method
The reduce() method executes a reducer function (that you provide) on each element of the array, resulting in single output value.
The reducer function takes four arguments:
Accumulator (acc)
Current Value (cur)
Current Index (idx)
Source Array (src)
arr.reduce(callback( accumulator, currentValue, [, index[, array]] )[, initialValue])
let flattened = [[0, 1], [2, 3], [4, 5]].reduce(
( accumulator, currentValue ) => accumulator.concat(currentValue),
[]
)