Course · Section 10: A Closer Look at Functions · Lecture 135: Default Parameters
Implement `sumArgs(...nums)` returning the sum of all arguments passed, using rest parameters.
+ 1 hidden test run on Submit.
...nums gathers every argument into a real array, which reduce then sums.
Run your code to see results.