In an application dealing with an array of user objects, which higher-order function would be best for filtering users based on specific criteria?
- map
- filter
- reduce
- forEach
The correct option is filter. filter is specifically designed for filtering elements in an array based on a given criteria. It creates a new array with only the elements that satisfy the provided function.
Loading...
Related Quiz
- The ES6 __________ syntax in object literals allows for creating properties with the same name as local variables.
- Can tree shaking be used in both ES6 and CommonJS module systems?
- What is the main difference between higher-order functions and callbacks?
- How does a tagged template literal differ from a regular template literal?
- Given an API response with nested data structures, how would destructuring assignment simplify data extraction and handling?