JS: Array.prototype.map
myArray.map(f)
-
- Apply function to every element of the array.
- Return the new array.
- Original array is not changed.
f is given 3 args: currentElement currentIndex myArray
const a1 = [3, 4, 5]; const a2 = a1.map((x) => (x + 1)); console.log(a2); // [ 4, 5, 6 ] // original is not changed console.log(a1); // [ 3, 4, 5 ]
myArray.map(f, thisArg)
-
Use thisArg for this (binding) of f. Default to
undefined
.// example of using map with second argument function ff(x) { return [x, this]; } console.log([3, 4, 5].map(ff, 9)); // [ [ 3, 9 ], [ 4, 9 ], [ 5, 9 ] ]