Generic way of sorting JSON array by attribute

PhuRion

New Member
I found out how to sort a JSON array at http://www.devcurry.com/2010/05/sorting-json-array.htmlNow I want to sort it in a generic way; so that my sorting function knows which attribute to sort by. For example if my array is \[code\] [{"name":"John", "age":"16"}, {"name":"Charles", "age":"26"}] \[/code\]I want to avoid writing different if cases to know if I should sort by name or age. I just want to pass a parameter 'name' or 'age' and my sorting function should know what to do.Thanks.
 
Top