Last active
January 10, 2020 13:32
-
-
Save frivolta/2cb6f6cce5de2480d9c35bee6a519711 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add a new generic type T | |
const filterArrayByValue = <T>( | |
items: T[], | |
propertyName: string, | |
valueToFilter: string | |
): T[] => { | |
return items.filter(item =>item[propertyName] === valueToFilter); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment