You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 此处需要注意的是 month对应的是月份的 index
// 先获取下个月的第一天时间戳,减一天就是当前月最后一天的时间戳
let nextMonthFirstDay = new Date(year, month, 1);
let currentMonthLastDay = new Date(nextMonthFirstDay.getTime()-10006060*24).getDate();
The text was updated successfully, but these errors were encountered:
// 此处需要注意的是 month对应的是月份的 index
// 先获取下个月的第一天时间戳,减一天就是当前月最后一天的时间戳
let nextMonthFirstDay = new Date(year, month, 1);
let currentMonthLastDay = new Date(nextMonthFirstDay.getTime()-10006060*24).getDate();
The text was updated successfully, but these errors were encountered: