javascript collect function code example
Example 1: reduce method in javascript array of bjects
var arr = [{x:1}, {x:2}, {x:4}];
arr.reduce(function (acc, obj) { return acc + obj.x; }, 0);
console.log(arr);
Example 2: reduce method javascript
const array1 = [1, 2, 3, 4];
const callback = (accumulator, currentValue) => accumulator + currentValue;
console.log(array1.reduce(callback));
console.log(array1.reduce(callback, 5));
Array.prototype.myReduce = function(callback, acc) {
if (!acc) {
acc = this.shift();
}
this.forEach(function(element) {
acc = callback(acc, element)
})
return acc;
}