/**
* 获取几年前,默认一年前的今天
*/
function getLastYear(yearNum = 1){
let today = new Date() //当天
today.setFullYear(today.getFullYear()-yearNum)
return today;
}
/*
获取前几个月,默认前一个月的今天
*/
function getLastMonth(monthNum = 1){
let today = new Date() //当天
today.setMonth(today.getMonth()-monthNum)
return today;
}
如果获取月份碰到跨年的话,自动会减去年份