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

ลบวินาที/มิลลิวินาทีจากวันที่และแปลงเป็นสตริง ISO หรือไม่


หาวันที่ปัจจุบันก่อน -

var currentDate = new Date();
console.log("The current date is as follows="+currentDate);

ตอนนี้ ให้เราลบวินาที/มิลลิวินาทีโดยตั้งค่าให้เป็น 0 โดยใช้ setSeconds() -

currentDate.setSeconds(0,0);

แปลงเป็นสตริง ISO โดยใช้ toISOString() -

currentDate.toISOString()

ให้เราดูโค้ดทั้งหมดที่มีเอาต์พุต -

ตัวอย่าง

var currentDate = new Date();
console.log("The current date is as follows="+currentDate);
currentDate.setSeconds(0,0);
console.log("After removing seconds from date, the new date is as
follows=");
console.log(currentDate.toISOString());

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

node fileName.js.

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

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

PS C:\Users\Amit\JavaScript-code> node demo143.js
The current date is as follows=Sat Aug 01 2020 18:20:09 GMT+0530 (India Standard Time)
After removing seconds from date, the new date is as follows=
2020-08-01T12:50:00.000Z