💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
当你需要获取某年某月的最后一天 ~~~ 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 (中国标准时间) ~~~