Array- Flashcards
1
Q
What is Array.prototype.filter useful for?
A
The filter() method creates a shallow copy of a portion of a given array, filtered down to just the elements from the given array that pass the test implemented by the provided function.
2
Q
What is Array.prototype.map useful for?
A
The map ( ) method creates a new array populated with the results of calling a provided function on every element in the calling array.