Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions exercises/21.3-Filter-list/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

# 📝Instructions:

Given an array names please create a function filters the list with
only the names that contain the given string.
Given an array of names, please create a function that filters the list with
only the names containing the given string.

- Create a function called `filterByName` that take two values one is
the array and second one is the filter desire.
- Create a function called `filterByName` that accepts two values one is
the array and the second one is the filter desire.

- The search should NOT be Case Sensitive.

Expand All @@ -20,4 +20,4 @@ the array and second one is the filter desire.
array.filter();
string.includes();
string.toLowerCase();
```
```