Consider a scenario where you have an array of numbers, and you need to create a new array with only the numbers greater than 10. Which method would you use?

  • filter
  • map
  • reduce
  • forEach
In this scenario, the most suitable array method is filter. The filter method is designed for creating a new array containing elements that pass a certain condition. It allows you to filter out numbers greater than 10 effectively.
Add your answer
Loading...

Leave a comment

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