how to get min or max dates from a list of dates using moment.js?

南楼画角 提交于 2019-11-30 08:17:43

You can use moment.max function :

let moments = this.state.dates.map(d => moment(d)),
    maxDate = moment.max(moments)

Sort them with a custom compartor, then select the first one (or last, try it out);

   array.sort(function(d1, d2) {
       return moment(d1).isBefore(moment(d2));
        });
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!