获取某一天零点时间戳

export const zero_point_time_stamp = function (date) {
    return new Date(new Date(new Date(date).toLocaleDateString())).getTime()
}

// 24天凌晨时间戳
zero_point_time_stamp(new Date().getTime() - 24 * 60 * 60 * 1000)

你可能感兴趣的:(javascript)