JS 计算日期天数差

function dayDiffer(startDate,endDate){
console.info((endDate.getTime - startDate.getTime())/(24*60*60*1000));
return Math.floor((endDate.getTime() - startDate.getTime())/(24*60*60*1000));
}

  

上一篇:c# 计算时间差---天数


下一篇:常用oracle表空间查询语句