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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *