Course · Section 10: A Closer Look at Functions · Lecture 135: Default Parameters
Implement `maxOf(...nums)` returning the largest argument, or `null` when called with no arguments.
+ 1 hidden test run on Submit.
Collect arguments with rest, return null when none, otherwise spread into Math.max.
Run your code to see results.