JS时间计算
JS时间计算
function calcDate(dateStr,num) {
// 获取日期
const date = new Date(dateStr);
// 增加20天
date.setDate(date.getDate() + num);
// 获取增加后的年月日
const year = date.getFullYear();
const month = date.getMonth() + 1;
const day = date.getDate();
// 返回结果
return `${year}年${month}月${day}日`;
}
// 调用函数
const result = calcDate('2023/03/27',20);
console.log(result); // 预计输出结果:2023年4月16日
JS时间计算
https://guiyunweb.com/archives/js%E6%97%B6%E9%97%B4%E8%AE%A1%E7%AE%97