आपको वर्तमान तिथि से एक सप्ताह यानी 7 दिन घटाना होगा। निम्नलिखित वाक्य रचना है -
var anyVariableName=new Date(yourCurrentDate.setDate(yourCurrentDate.getDate() - 7)
सबसे पहले, वर्तमान तिथि प्राप्त करें -
var currentDate = new Date(); console.log("The current Date="+currentDate);
अब, नई तारीख सेटडेट () विधि से सेट करें और 7 दिन घटाएं -
उदाहरण
var currentDate = new Date(); console.log("The current Date="+currentDate); var before7Daysdate=new Date(currentDate.setDate(currentDate.getDate() - 7)); console.log("The One week ago date="+before7Daysdate);
उपरोक्त प्रोग्राम को चलाने के लिए, आपको निम्न कमांड का उपयोग करने की आवश्यकता है -
node fileName.js.
यहाँ, मेरी फ़ाइल का नाम है demo60.js.
आउटपुट
यह निम्नलिखित आउटपुट देगा -
PS C:\Users\Amit\JavaScript-code> node demo60.js The current Date=Tue Jul 14 2020 19:12:43 GMT+0530 (India Standard Time) The One week ago date=Tue Jul 07 2020 19:12:43 GMT+0530 (India Standard Time)