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));
}
2023-02-13 19:29:34
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));
}
下一篇:常用oracle表空间查询语句