I want each item to be sorted by a specific property value from a list of dictionaries I have.
Take the following array into consideration:
[{'name':'Robb', 'age':28}, {'name':'Robert', 'age':14}]
It should become,
[{'name':'Robert', 'age':14}, {'name':'Rob', 'age':28}]
When sorted by name