सबसे पहले, वर्तमान तिथि प्राप्त करें -
var currentDateTime = new Date();
सेकंड में वर्तमान दिनांक/समय प्राप्त करने के लिए, getTime ()/1000 का उपयोग करें।
उदाहरण
निम्नलिखित कोड है -
var currentDateTime = new Date(); console.log("The current date time is as follows:"); console.log(currentDateTime); var resultInSeconds=currentDateTime.getTime() / 1000; console.log("The current date time in seconds is as follows:") console.log(resultInSeconds);
उपरोक्त प्रोग्राम को चलाने के लिए, आपको निम्न कमांड का उपयोग करने की आवश्यकता है -
node fileName.js.
यहाँ, मेरी फ़ाइल का नाम है demo285.js.
आउटपुट
यह कंसोल पर निम्न आउटपुट उत्पन्न करेगा -
The current date time is as follows: 2020-08-28T16:13:35.987Z The current date time in seconds is as follows: 1598631215.987