युग से सेकंड प्राप्त करने के लिए, नीचे दिए गए सिंटैक्स का उपयोग करें -
var anyVariableName= new Date(); Math.round(yourDateVariableName.getTime() / 1000);
सबसे पहले, वर्तमान तिथि प्राप्त करें -
var currentDate= new Date();
अब, युग के बाद से सेकंड प्राप्त करें -
उदाहरण
var currentDate= new Date(); var epochSeconds = Math.round(currentDate.getTime() / 1000); console.log(epochSeconds);
उपरोक्त प्रोग्राम को चलाने के लिए, आपको निम्न कमांड का उपयोग करने की आवश्यकता है -
node fileName.js.
यहाँ, मेरी फ़ाइल का नाम है demo67.js.
आउटपुट
यह निम्नलिखित आउटपुट देगा -
PS C:\Users\Amit\JavaScript-code> node demo67.js 1594821507