Sorting a JSON Array by Property
Sorting arrays of JSON objects is a task that I occasionally come across. Here’s a little utility I’ve been using for a while that does the trick. [code=’js’] /** * Sorts an array of json objects by some common property, …