Course · Section 10: A Closer Look at Functions · Lecture 144: Closures
Implement `applyMultiplier(factor, nums)` that creates a multiplier function bound to `factor` via a closure and maps it over `nums`.
+ 1 hidden test run on Submit.
The inner multiplier captures factor by closure, so mapping applies the same bound factor to each number.
Run your code to see results.