如何使用 JavaScript 从今天开始减日期?
你需要使用`new Date().getDate()`获取当前日期。语法如下所示 -
var anyVariableName= yourCurrentDate - yourSubstractDateOfCurrentMonth;
示例
var currentDate=new Date().getDate(); var substractDate=new Date("2020-07-01").getDate(); const numberOfDaysInCurrentMonthOnly = currentDate-substractDate; console.log(numberOfDaysInCurrentMonthOnly);
注释
Today’s date is - 28-07-2020
若要运行以上程序,你需要使用以下命令 -
node fileName.js.
此处,我的文件名是 demo129.js
PS C:\Users\Amit\JavaScript-code> node demo129.js 27
广告