如何使用对象对数组进行排序,我不知道对象中的键是什么。这是示例数组,还要注意字段'updatedAt'。 Lodash解决方案将不胜感激,但不是必要的。请帮助。
let arrayToSort = [
{
fromDate: "2018-01-06T00:00:00.000Z",
toDate: "2018-03-31T00:00:00.000Z",
updatedAt: new Date("2016-08-17T20:21:08.723Z"),
createdAt: "2016-08-17T20:21:08.723Z"
},
{
fromDate: "2017-04-01T00:00:00.000Z",
toDate: "2017-12-24T00:00:00.000Z",
updatedAt: "2016-06-28T21:20:21.754Z",
createdAt: "2016-06-28T21:20:21.754Z",
}
]