JS时间排序
2022-09-27 本文已影响0人
Coder_JdHo
if(timeList && timeList.length > 1) {
timeList.sort((a, b) => { //timeList为字符串(格式如:2022-09-24 16:52:40)
let a1 = Date.parse(a) //转换成时间戳
let b1 = Date.parse(b)
return a1 - b1
})
}