array.reduce on array of objects code example
Example 1: javascript reduce array of objects
var objs = [
{name: "Peter", age: 35},
{name: "John", age: 27},
{name: "Jake", age: 28}
];
objs.reduce(function(accumulator, currentValue) {
return accumulator + currentValue.age;
}, 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 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 javascript
let sum = arr.reduce((curr, index) => curr + index);
Example 5: reduce javascript
const initialValue = 0;
const numbers = [5, 10, 15];
const reducer = (accumulator, item) => {
return accumulator + item;
};
const total = numbers.reduce(reducer, initialValue)