if I have a list of object:
var objectList= LIST_OF_OBJECT;
each object in the list contains three attributes: \"name<
If your objects have the date information within a String field:
yourArray.sort(function(a, b) { return new Date(a.date) - new Date(b.date) })
or, if they have it within a Date field:
yourArray.sort(function(a, b) { return a.date - b.date })