Сравните две даты и сортировку объектов

your_array.sort ( (a, b) => {
      return new Date(a.DateTime) - new Date(b.DateTime);
});
Dark Dormouse