My task involves working with a JSON string that looks like this...
JSON:
[{"my_id":"100002","my_confirmation":"682354682"},{"my_id":"100005","my_confirmation":"281735345"},{"my_id":"100009","my_confirmation":"361567356"}]
After parsing this JSON into a key/value pair array, I need to figure out the simplest way to use JavaScript to return a boolean value when trying to find a match for "my_id" with the value of "100005". And is it necessary to first parse the JSON into an array?