कल की तारीख प्राप्त करने के लिए, सबसे पहले वर्तमान तिथि प्राप्त करें और वर्तमान से 1 घटाएं और फ़ंक्शन सेटडेट () का उपयोग करें। वाक्य रचना इस प्रकार है -
yourCurrentDateVariableName.setDate(yourCurrentDateVariableName.getDate() - 1);
सबसे पहले, वर्तमान तिथि प्राप्त करें -
var currentDate = new Date();
अब, निम्नलिखित कोड के साथ कल की तारीख प्राप्त करें -
उदाहरण
var currentDate = new Date(); console.log("The current date="+currentDate); var yesterdayDate = currentDate.setDate(currentDate.getDate()- 1); console.log("The yesterday date ="+new Date(yesterdayDate));
उपरोक्त प्रोग्राम को चलाने के लिए, आपको निम्न कमांड का उपयोग करने की आवश्यकता है -
node fileName.js.
आउटपुट
यहाँ, मेरी फ़ाइल का नाम है demo137.js। यह निम्नलिखित आउटपुट देगा -
PS C:\Users\Amit\JavaScript-code> node demo137.js The current date=Fri Jul 31 2020 18:57:17 GMT+0530 (India Standard Time) The yesterday date =Thu Jul 30 2020 18:57:17 GMT+0530 (India Standard Time)