Course · Section 11: Working With Arrays · Lecture 156: Data Transformations: map, filter, reduce
Implement `sumNested(arrs)` returning the total of all numbers across an array of number arrays, using `reduce`.
+ 1 hidden test run on Submit.
An outer reduce accumulates the sum of each inner array's own reduce.
Run your code to see results.