我正在计算从“开始”到“结束”日期之间的天数。例如,如果起始日期为2010年4月13日,起始日期为2010年5月15日,则结果应为
如何使用JavaScript获得结果?
const oneDay = 24 * 60 * 60 * 1000; // hours*minutes*seconds*milliseconds const firstDate = new Date(2008, 1, 12); const secondDate = new Date(2008, 1, 22); const diffDays = Math.round(Math.abs((firstDate - secondDate) / oneDay));