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

รับวันพรุ่งนี้และวันมะรืนใน JavaScript


การใช้คลาส Date ของ JavaScript ที่มีวัตถุ new Date() ส่งกลับวันที่ JavaScript สำหรับวันปัจจุบัน เราต้องหาวันที่ของสองวันถัดไป

นี่เป็นปัญหาที่ค่อนข้างง่าย และเราสามารถทำได้ด้วยโค้ดสองสามบรรทัด อันดับแรก หาวันที่ของวันนี้ −

// getting today's date
const today = new Date();

มาเขียนโค้ดสำหรับฟังก์ชันนี้กัน −

// getting today's date
const today = new Date();
// initializing tomorrow with today's date
const tomorrow = new Date(today);
// increasing a day in tomorrow and setting it to tomorrow
tomorrow.setDate(tomorrow.getDate() + 1);
const dayAfterTomorrow = new Date(today);
dayAfterTomorrow.setDate(dayAfterTomorrow.getDate() + 2);
console.log(today);
console.log(tomorrow);
console.log(dayAfterTomorrow);

ผลลัพธ์

ต่อไปนี้เป็นผลลัพธ์ในคอนโซล -

2020-08-13T17:13:26.401Z
2020-08-14T17:13:26.401Z
2020-08-15T17:13:26.401Z