ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
当你需要获取某年某月的最后一天 ~~~ const getLastDate = (d = new Date()) => new Date(d.getFullYear(), d.getMonth() + 1, 0); getLastDate(new Date('2023-03-04')) // Fri Mar 31 2023 00:00:00 GMT+0800 (中国标准时间) ~~~