前端系列:JS 获取当天上一个月
JS 获取当天上一个月
JS 获取当天上一个月
function getLastDay(day) {
let date = new Date(day || "2024-3-30")
let nowDayValue = date.getDate() // 当月几号
let lastMonth = date.getMonth() // 设置上一个月(这里不需要减1,默认从0开始)
date.setDate(0) // 先设置为0,默认为当前月-上一个月的最后一天,方便获取上月最大天数
let lastDayValue = date.getDate()
console.log(date,nowDayValue,lastDayValue)
date.setDate(nowDayValue < lastDayValue ? nowDayValue : lastDayValue)
return date
}
console.log("|===",getLastDay()) //2024-02-28T16:00:00.000Z