2019-12-26
描述
从给定的日期中返回最大的一个。
提示
- 在
Math.max
使用 ES6 的展开语法找到最大的 date 值 - 使用
new Date()
将最大值转换为Date
对象
代码
const maxDate = dates => new Date(Math.max(...dates));
示例
从数组中找出最新的一天:
const array = [
new Date('2009-12-09'),
new Date('2017-4-13'),
new Date('2019-12-26'),
new Date('2016-1-10'),
new Date('2016-1-9')
];
maxDate(array); // Thu Dec 26 2019 08:00:00 GMT+0800 (中国标准时间)