sum array of strings javascript code example
Example 1: 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;
}
Example 2: adding all elements in an array javascript
values.reduce(function(a, b){return a+b;})