I have the following information:
The city name, in this case Littelside. This is stored in a variable
var cityI have an array of {} objects. Each contains address, city, name, state and zip-code
[{"address":"07288 Albertha Station",**"city":"Littelside"**,"created_at":"2011-05-25T19:24:51Z","id":1,"name":"Mr. Emmitt Emmerich","state":"Missouri","updated_at":"2011-05-25T19:24:51Z","zip":"75475-9938"},{NEXT OBJECT WITH ADDRESS CITY ETC}]
How do you use the var city as a search term to parse the array, and return address, city, state, name and zip of the array with the matching city?
Thanks!