array reducer code example
Example 1: javascript sum of array
const sum = arr => arr.reduce((a, b) => a + b, 0);
Example 2: 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 object to array javascript
var arr = [{x:1},{x:2},{x:4}];
arr.reduce(function (a, b) {
return {x: a.x + b.x};
})
arr.reduce((a, b) => ({x: a.x + b.x}));
Example 4: reduce
const array1 = [1, 2, 3, 4];
const reducer = (accumulator, currentValue) => accumulator + currentValue;
console.log(array1.reduce(reducer));
console.log(array1.reduce(reducer, 5));
Example 5: reduce javascript
let sum = arr.reduce((curr, index) => curr + index);
Example 6: syntax of reduce in js
[1,2,3,4,5].reduce((acc, current)=>acc+current, 0)