如何计算两个日期之间的天数?
我正在计算从“开始”到“结束”日期之间的天数。例如,如果起始日期为2010年4月13日,起始日期为2010年5月15日,则结果应为
如何使用JavaScript获得结果?
回答:
const oneDay = 24 * 60 * 60 * 1000; // hours*minutes*seconds*millisecondsconst firstDate = new Date(2008, 1, 12);
const secondDate = new Date(2008, 1, 22);
const diffDays = Math.round(Math.abs((firstDate - secondDate) / oneDay));
以上是 如何计算两个日期之间的天数? 的全部内容, 来源链接: utcz.com/qa/420933.html