อันดับแรก รับวันที่ปัจจุบัน -
var currentDateTime = new Date();
หากต้องการรับวันที่/เวลาปัจจุบันเป็นวินาที ให้ใช้ getTime()/1000
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
var currentDateTime = new Date(); console.log("The current date time is as follows:"); console.log(currentDateTime); var resultInSeconds=currentDateTime.getTime() / 1000; console.log("The current date time in seconds is as follows:") console.log(resultInSeconds);
ในการรันโปรแกรมข้างต้น คุณต้องใช้คำสั่งต่อไปนี้ -
node fileName.js.
ที่นี่ ชื่อไฟล์ของฉันคือ demo285.js
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้บนคอนโซล -
The current date time is as follows: 2020-08-28T16:13:35.987Z The current date time in seconds is as follows: 1598631215.987