Course · Section 10: A Closer Look at Functions · Lecture 140: The call and apply Methods
Given a `sumAll` function that sums its arguments, implement `sumApply(nums)` that calls it via `apply`, passing `nums` as the argument list.
+ 1 hidden test run on Submit.
apply spreads the array as individual arguments to the function.
Run your code to see results.