I have a JSON Array that looks like this
[{'age':1, 'name':'james'}, {'age':3, 'name':'henry'}, {'age':10, 'name':'andrew'}]
is it possible to order this by the age of the people so that it goes like this
[{'age':10, 'name':'andrew'}, {'age':3, 'name':'henry'}, {'age':1, 'name':'james'}]
Thanks for the help