📜  现在添加月份日期 javascript 代码示例

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

代码示例1
var myCurrentDate=new Date();
var myFutureDate=new Date(myCurrentDate);
    myFutureDate.setDate(myFutureDate.getDate()+ 8);//myFutureDate is now 8 days in the future