From the course: Learning Functional Programming with JavaScript ES6+

Unlock the full course today

Join today to access over 22,500 courses taught by industry experts or purchase this course individually.

Filtering

Filtering - JavaScript Tutorial

From the course: Learning Functional Programming with JavaScript ES6+

Start my 1-month free trial

Filtering

- [Instructor] The next important built-in array function is called Filter. Filter is used when you want to find all of the elements in an array that fit some kind of criteria. For example if we have an array of numbers and we want to get all the numbers from it that are even, or if we have an array of employee data, and want to find the employees from this array that make more than a certain amount per year. These are the things that Filter can help us with. The syntax to Filter is similar to Map. We can call it on any array and then we pass in a function. The main difference between Filter and Map is the type of function that we pass into it. In Map, we pass in a function that returns a value for each element in the array. And the return value of this function represents what the element becomes in our new array. On the other hand, for Filter, we pass it a function that returns either true or false for each element. If the function that we pass returns true for a given element, then…

Contents