reducer javascript redux code example
Example 1: javascript reduce
var array = [36, 25, 6, 15];
array.reduce(function(accumulator, currentValue) {
return accumulator + currentValue;
}, 0);
Example 2: javascript, reduce
const myReduce = myArray.reduce((acc, item) => {
acc += item
})
Example 3: react/redux reducers sintaxe
const reduxSinaxe = (state = [], action) => {
switch (action.type) {
case "@smthg/ACTION":
const { anyConst } = action;
return [...state, anyConst];
default:
return state;
}
};
export default reduxSinaxe;