Course · Section 11: Working With Arrays · Lecture 156: Data Transformations: map, filter, reduce
Implement `doubleAll(nums)` returning each number multiplied by two, using `map`.
+ 1 hidden test run on Submit.
map produces a new array with each value doubled.
Run your code to see results.