I am currently working with an array of objects that contain keys a, b, and c. Key a has a property named property1, key b has properties property1 and property2, and key c has a property called propertycheck. My goal is to retrieve only the key that does not have property1 in it. In this case, I am looking for the output to be c. Any suggestions or assistance would be greatly appreciated as I am stuck at this point.
[
{
"a": {
"property1": "false"
}
},
{
"b": {
"property1": "false",
"property2": "truthy"
}
},
{
"c": {
"propertycheck": "required"
}
}
]