I have a list of JSON objects in my javascript code:
var cached4= [];
cached4.push({ Frame: 'frame', TS: 20150809101523723 });
cached4.push({ Frame: 'frame', TS: 20150809101513165 });
cached4.push({ Frame: 'frame', TS: 20150809101514988 });
I now want to reorder this array in TS order so that my result would be like this:
20150809101513165 
20150809101514988 
20150809101523723 
Now obviously I can enumerate through the array like so:
cached4.forEach(function (entry) {
    cached4.shift();
});
But is there a 'linqy' type of way of ding this?
 
     
    