Course · Section 10: A Closer Look at Functions · Lecture 135: Default Parameters
Implement `sumEvenArgs(...nums)` returning the sum of only the even arguments.
+ 1 hidden test run on Submit.
Rest collects the arguments, filter keeps the evens, and reduce sums them.
Run your code to see results.