JavaScript에서 epoch 이후의 시간과 날짜를 얻으려면 다음 코드를 실행해 보십시오. −
예
<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)