คุณต้องใช้ 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