js根据年月获取当月最后一天

js根据年月获取当月最后一天,或者根据年月获取最大的天数,其代码如下:

    const input = "2020-06"
    const arr = input.split('-')
    const maxDay = new Date(arr[0], arr[1], 0).getDate() // 获取当月最后一日
    console.log(maxDay) // 结果为30
posted @ 2022-06-09 16:03  itmacy  阅读(893)  评论(0编辑  收藏  举报