I have a list of the following sort:
[
{
"_name": "FIX.4.0"
},
{
"_name": "FIX.4.1"
},
{
"_name": "FIX.4.2"
},
{
"_name": "FIX.4.3"
},
{
"_name": "FIX.4.4"
}
]
I want to check if "FIX.4.3" is present in the "_name" property of any of these objects or not. I can't change the format of the list (No matter how much I want to) because I fetch it from somewhere else. I know I can loop through the objects, but I'm looking for a better way. Thanks in advance.