I have a JSON object with user information, its a large array of thousand of users an example of one is:
[ {
"FirstName" : "Joe",
"LastName" : "Doe",
"Address" : "123 Main Street"
}
]
I want to be able to search in this json array based on first and last name and return the object that matches.