Example 1: reduce javascript
const sum = array.reduce((accumulator, element) => {
return accumulator + element;
}, 0);
const product = array.reduce((accumulator, element) => {
return accumulator * element;
}, 1);
Example 2: javascript reduce
var array = [36, 25, 6, 15];
array.reduce(function(accumulator, currentValue) {
return accumulator + currentValue;
}, 0);
Example 3: 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 4: reduce javascript
let sum = arr.reduce((curr, index) => curr + index);
Example 5: reduce array to object javascript
const posts = [
{id: 1, category: "frontend", title: "All About That Sass"},
{id: 2, category: "backend", title: "Beam me up, Scotty: Apache Beam tips"},
{id: 3, category: "frontend", title: "Sanitizing HTML: Going antibactirial on XSS attacks"}
];
const categoryPosts = posts.reduce((acc, post) => {
let {id, category} = post;
return {...acc, [category]: [...(acc[category] || []), id]};
}, {});
Example 6: reduce javascript
const initialValue = 0;
const numbers = [5, 10, 15];
const reducer = (accumulator, item) => {
return accumulator + item;
};
const total = numbers.reduce(reducer, initialValue)