- Review Higher Order Functions
- Review Map Method
- Explain what the Filter method does
- Solve Problems Using Filter
##takes a function as an input ###OR
- An array method
- Takes a function as an input
- Applies that function to every item in the array
- Returns a NEW array that contains transformed data
- An array method
- Takes a function as an input (the function should return a boolean)
- Tests each item in the array using the function
- Returns a NEW array that contains all items that pass the test