When for example returning JSON from a Google Spreadsheet, the object returned contains an array of entry objects (corresponding to rows in the spreadsheet).
An entry can have a name like so: jsonObject.feed.entries[15].name = "xyz";
Can I easily return an entry with the name of "xyz" using shorhand notation (E4X) of some sort?
thanks!