sum reduce javascript code example
Example 1: sum of number using reduce
console.log(
[1, 2, 3, 4].reduce((a, b) => a + b, 0)
)
console.log(
[].reduce((a, b) => a + b, 0)
)
Example 2: js sum of array
[1, 2, 3, 4].reduce((a, b) => a + b, 0)
// Output: 10
Example 3: javascript sum of array
const sum = arr => arr.reduce((a, b) => a + b, 0);
Example 4: sum of all numbers in an array javascript
const arrSum = arr => arr.reduce((a,b) => a + b, 0)
Example 5: javascript reduce sum
arrSum = function(arr){ return arr.reduce(function(a,b){ return a + b }, 0);}
Example 6: reduce javascript
const sum = array.reduce((accumulator, element) => {
return accumulator + element;
}, 0);
// An example that will loop through an array adding
// each element to an accumulator and returning it
// The 0 at the end initializes accumulator to start at 0
// If array is [2, 4, 6], the returned value in sum
// will be 12 (0 + 2 + 4 + 6)
const product = array.reduce((accumulator, element) => {
return accumulator * element;
}, 1);
// Multiply all elements in array and return the total
// Initialize accumulator to start at 1
// If array is [2, 4, 6], the returned value in product
// will be 48 (1 * 2 * 4 * 6)