JavaScript Practice Test
JavaScript Array Methods
What does `Array.prototype.map()` return?
Select your answer
A
The original array modified in place
B
A new array with each element transformed by the callback
C
A boolean indicating whether all elements passed a test
D
The first element that satisfies a condition
Hint