[
{"ID":"5","Name":"Jay"},
{"ID":"30","Name":"Sharon"},
{"ID":"32","Name":"Paul"}
]
So I have this kind of JSON.
I need to easily supply the value for a required key. For example:
- 30 would yield => "Sharon"
- 5 would yield => "Jay"
etc. What is the right way to do this?