Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะลบวันที่ออกจากวันที่วันนี้ใน JavaScript ได้อย่างไร


คุณต้องใช้ currentDate ด้วยความช่วยเหลือของ 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); 

หมายเหตุ

วันนี้คือ - 28-07-2020

ในการรันโปรแกรมข้างต้น คุณต้องใช้คำสั่งต่อไปนี้ -

โหนด fileName.js

ที่นี่ ชื่อไฟล์ของฉันคือ demo129.js

PS C:\Users\Amit\JavaScript-code> โหนด demo129.js27