reduce into an array code example
Example 1: how to flatten array with reduce in javascript
let flattened = [[0, 1], [2, 3], [4, 5]].reduce(
function(accumulator, currentValue) {
return accumulator.concat(currentValue)
},
[]
)
Example 2: how to use reduce in 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: array reduce
arr.reduce(callback( accumulator, currentValue[, index[, array]] ) {
}[, initialValue]);