📌  相关文章
📜  javascript获取当月的第一天和最后一天 - Javascript代码示例

📅  最后修改于: 2022-03-11 15:02:56.947000             🧑  作者: Mango

代码示例4
var d = new Date();
d.setDate(0); //sets d to the last day of the previous month
d.setDate(1); //sets d the the first day of that month
d.setHours(0,0,0,0); //sets d time to midnight

//d now equals the first day of the month before today