Self-review: Create a basic List component - Advanced React
When using the filter operator from arrays in JavaScript, what type should you return from the predicate function to determine if the element should be filtered out or not?
You should return null if the element should be filtered out and any other v...