📜  在 6 个月日期之前获取 javascript 节点 js - Javascript 代码示例

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

代码示例1
var oneMonthAgo = new Date(
    new Date().getFullYear(),
    new Date().getMonth() - 1, 
    new Date().getDate()
);
console.log(oneMonthAgo);
//$uj@y