I have an array of objects:
The object looks like this:
applicationNumber: "35028"
denomination: "ZippIT"
denominationNature: "Denomination"
denominationStatus: "SURRENDERED"
publicationCountry: "RU"
publicationType: "PBR"
speciesName: "Triticum aestivum L."
I want to be able to filter that array of objects based on a string. If that string is on any of the values of the object, we return the object.
Any idea on where to start from?