Course · Section 11: Working With Arrays · Lecture 156: Data Transformations: map, filter, reduce
Implement `doubleAll(arr)` that returns a new array where every number has been multiplied by 2.
+ 1 hidden test run on Submit.
map produces a new array with each value doubled.
Run your code to see results.