Ejemplo 1: método de reducción en una matriz javascript de objetos
var arr = [{x:1}, {x:2}, {x:4}];
arr.reduce(function (acc, obj) { return acc + obj.x; }, 0); // 7
console.log(arr);
Ejemplo 2: reducir javascript
let sum = arr.reduce((curr, index) => curr + index);
Ejemplo 3: sintaxis de reduce en js
[1,2,3,4,5].reduce((acc, current)=>acc+current, 0)
Ejemplo 4: reducir javascript
/* this is our initial value i.e. the starting point*/
const initialValue = 0;
/* numbers array */
const numbers = [5, 10, 15];
/* reducer method that takes in the accumulator and next item */
const reducer = (accumulator, item) => {
return accumulator + item;
};
/* we give the reduce method our reducer function
and our initial value */
const total = numbers.reduce(reducer, initialValue)
Ejemplo 5: reducir javascript
function flattenArray(data) {
// our initial value this time is a blank array
const initialValue = [];
// call reduce on our data
return data.reduce((total, value) => {
// if the value is an array then recursively call reduce
// if the value is not an array then just concat our value
return total.concat(Array.isArray(value) ? flattenArray(value) : value);
}, initialValue);
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)