To process each element in an array and build a new array with elements that pass certain criteria, use _________.
- map
- forEach
- reduce
- filter
The filter method is used to create a new array with elements that pass a certain condition specified in a callback function.
Loading...
Related Quiz
- In which scenarios are dynamic imports particularly useful?
- In functional programming, _________ is a technique used to avoid side effects by ensuring data is not modified.
- In ES6, what is the role of the 'package.json' file in module resolution?
- If you need to access both the index and value in an array using for...of, use __________ to convert the array into an iterable of index-value pairs.
- In a class, static properties can be accessed using the class name followed by _________.