💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
当你需要获取某年某月的第一天 ~~~ const getFirstDate = (d = new Date()) => new Date(d.getFullYear(), d.getMonth(), 1); getFirstDate(new Date('2022-04')) // Fri Apr 01 2022 00:00:00 GMT+0800 (中国标准时间) ~~~