前の月の時間とその月の最後の日を現在の時間に基づいて動的に取得します.


業務の需要の中で、現在の時間によって先月の時間または当月の最後の日を取得することがよくあります.毎月の日数が違いますので、時間の正確さを考慮するために、いくつかの判断と計算を行う必要があります.具体的な方法は以下の通りです.
/*         ,  yyyy-MM-dd   
* getLastMonthTime('2020-04-16','date'); date  
* getLastMonthTime(new Date,'num'); //     
* */
function getLastMonthTime(date, type){
    var daysInMonth = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
    if(type == 'date'){ //     
        date = new Date(date);
    }
    var strYear = date.getFullYear();
    var strDay = date.getDate();
    var strMonth = date.getMonth()+1;
    //       
    if (((strYear % 4) === 0) && ((strYear % 100)!==0) || ((strYear % 400)===0)){
        daysInMonth[2] = 29;
    }
    //    
    if(strMonth - 1 === 0){
        strYear -= 1;
        strMonth = 12;
    }else{
        strMonth -= 1;
    }
    strDay = Math.min(strDay,daysInMonth[strMonth]);
    strMonth = strMonth<10?"0"+strMonth:strMonth;
    strDay = strDay<10?"0"+strDay:strDay;
    return strYear+"-"+strMonth+"-"+strDay;
}

/*          
 * date   (yyyy-MM-dd HH:mm:ss、yyyy-MM-dd HH:mm、yyyy-MM-dd HH、yyyy-MM-dd 、yyyy-MM)
 *  */
function getLastDay(date) {
    var dateMonth  = date.substr(5,2);
    var month = ['01','02','03','04','05','06','07','08','09','10','11','12'];
    var daysInMonth = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
    var fullYear = new Date(date).getFullYear();
    //       
    if (fullYear % 4 == 0 && (fullYear % 100 != 0 || fullYear % 400 == 0)){
        daysInMonth[1] = 29;
    }
    var lastDay = daysInMonth[month.indexOf(dateMonth)];
    return lastDay;
}