JSFiddle - React, Tailwind, and code Playground
JavaScript
const reducer = (acc, current) => acc + current;
const initialValue = 0;
const arrayToReduce = [1, 5, 7, 10];
console.log(reduce(reducer, initialValue, arrayToReduce));
const reducer = (acc, current) => acc + current;
const initialValue = 0;
const arrayToReduce = [1, 5, 7, 10];
console.log(reduce(reducer, initialValue, arrayToReduce));