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

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

代码示例1
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