जावास्क्रिप्ट में युग से समय और दिनांक प्राप्त करने के लिए, आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
उदाहरण
<html> <head> <title>JavaScript Clone Date</title> </head> <body> <script> var current_date, epocDate; current_date = new Date(); document.write("Current Date: "+current_date); var epocDate = new Date(new Date().getTime() / 1000); document.write("<br>Since epoch: "+epocDate); </script> </body> </html>
आउटपुट
Current Date: Mon May 28 2018 09:23:11 GMT+0530 (India Standard Time) Since epoch: Sun Jan 18 1970 21:47:59 GMT+0530 (India Standard Time)