find sum of array elements js code example
Example 1: javascript sum of array
const sum = arr => arr.reduce((a, b) => a + b, 0);
Example 2: sum of all elements in array javascript
arrSum = function(arr){ return arr.reduce(function(a,b){ return a + b }, 0);}