जावास्क्रिप्ट के दिनांक वर्ग का उपयोग करते हुए जिसका ऑब्जेक्ट नई तिथि () वर्तमान दिन के लिए एक जावास्क्रिप्ट तिथि लौटाता है, हमें अगले दो दिनों की तारीख का पता लगाना होगा।
यह काफी सरल समस्या है और हम इसे कोड की कुछ पंक्तियों के साथ प्राप्त कर सकते हैं। सबसे पहले, आज की तारीख प्राप्त करें -
// 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