Given an array:
unsortedArray = [
{'Email': 'jen@test.com', 'Created': '1/15/14 15:01'},
{'Email': 'julia@test.com', 'Created': '1/16/14 18:21'},
{'Email': 'andy@test.com', 'Created': '1/15/14 22:41'},
{'Email': 'julia@test.com', 'Created': '1/16/14 18:20'},
{'Email': 'victoria@test.com', 'Created': '1/16/14 23:05'},
{'Email': 'lindsey@test.com', 'Created': '1/17/14 9:02'},
{'Email': 'jim@test.com', 'Created': '1/17/14 11:28'}
]
How to sort this by 'Created' attribute, newest to oldest?