running sum of array in js code example
Example 1: js sum of array
[1, 2, 3, 4].reduce((a, b) => a + b, 0)
// Output: 10
Example 2: javascript sum of array
const sum = arr => arr.reduce((a, b) => a + b, 0);
Example 3: running sum of array
Input: nums = [1,1,1,1,1]
Output: [1,2,3,4,5]
Explanation: Running sum is obtained as follows: [1, 1+1, 1+1+1, 1+1+1+1, 1+1+1+1+1].