В
Size: a a a
ES
ES
ES
ES
T
T
T
T
T
T
ES
ES
ES
T
let arr = [{date: '10.01.2015'}, {date: '05.11.2016'}, {date: '21.07.2002'}];
const res = arr.map(({date}) => ({time: new Date(date.split('.').reverse()).getTime(), date})).sort((a, b) => a.time - b.time).map(({date}) => ({date}))
console.log(res);