Course · Section 10: A Closer Look at Functions · Lecture 139: Functions Returning Functions
Implement `multiplyAll(factor, nums)` that builds a multiplier by calling a `makeMultiplier(factor)` function which returns a function, then maps it over `nums`.
+ 1 hidden test run on Submit.
makeMultiplier returns a closure bound to factor, used directly as the map callback.
Run your code to see results.