Javascript
 Computer >> コンピューター >  >> プログラミング >> Javascript

JavaScriptで今日の日付から日付を引く方法は?


new Date()。getDate()を使用してcurrentDateを使用する必要があります。構文は次のとおりです-

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

  1. JavaScriptで日付配列を並べ替える方法

    このような日付を含む配列があるとします- const arr = [    [ '02/13/2015', 0.096 ],    [ '11/15/2013', 0.189 ],    [ '05/15/2014', 0.11 ],    [ '12/13/2013', 0.1285 ],    [ '01/15/2013', 0.12 ],    [ '01/15/2014',

  2. Pythonの日付からPythonのタイムデルタを引く方法は?

    timedeltaオブジェクトを使用して、Pythonの日付から日を引くことができます。減算する時間でtimedeltaオブジェクトを作成する必要があります。次に、日付からそれを引きます。 例 from datetime import datetime from datetime import timedelta today = datetime.today() yesterday = today - timedelta(days=1) print(today) print() print(yesterday) 出力 これにより、出力が得られます- 2017-12-29 12:28:06.