आइए पहले वर्तमान तिथि प्राप्त करें -
var currentDate = new Date(); console.log("The current date is as follows="+currentDate);
अब, हम सेकंड/मिलीसेकंड को 0 पर सेट करके setSeconds() -
. का उपयोग करके हटाते हैंcurrentDate.setSeconds(0,0);
toISOString() -
. का उपयोग करके ISO स्ट्रिंग में कनवर्ट करें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