How to add all the values in a array javaScirpt code example
Example 1: sum of all numbers in an array javascript
const arrSum = arr => arr.reduce((a,b) => a + b, 0)
Example 2: how to add all values of array together js
function addArrayNums(arr) {
let total = 0;
for (let i in arr) {
total += arr[i];
}
return total;
}