Course · Section 11: Working With Arrays · Lecture 160: The reduce Method
Implement `filterSearch(items, query)` returning items whose `name` contains `query`, case-insensitive.
+ 1 hidden test run on Submit.
Normalizing case and using includes gives a forgiving search filter, the typical derived list behind a search box.
Run your code to see results.