DEV Community

Discussion on: Simple search form in REACT using hooks 🔎.

Collapse
 
sapien profile image
Prateek Thapa

Great.
One nitpick here: Make sure you trim your string for searching. Trim removes all the spaces at the start and end of the string.

people.filter(person => person.toLowerCase().includes(searchTerm.trim()));

Enter fullscreen mode Exit fullscreen mode