Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm cách nào để lấy ngày và giờ kể từ kỷ nguyên trong JavaScript?


Để biết ngày giờ kể từ kỷ nguyên trong JavaScript, bạn có thể thử chạy mã sau -

Ví dụ

<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>

Đầu ra

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)