Reduce callback function in JavaScript
Reduce is a very vast and powerful callback function that can be used for array in many different ways.
const pep = [2,3,4,5,6,7,8];
const sums = pep.reduce((ini, curr) => ini + curr);
// The variable sums now hold the total from the reduce callba...
webdevnote.hashnode.dev2 min read