JavaScript의 날짜는 epoch 이후 밀리초가 걸립니다. 밀리초 단위의 epoch가 1514789449605이면 의미 있는 JavaScript 날짜로 변환해 보겠습니다.
예
<html> <head> <title>JavaScript Dates</title> </head> <body> <script> var val ="/Date(1514789449605)/"; var myDate = new Date( parseFloat( val.substr(6 ))); document.write("Converted Date:"+ (myDate.getMonth() + 1) + "/" + myDate.getDate() + "/" + myDate.getFullYear() + " " + myDate.getHours() + ":" + myDate.getMinutes() + ":" + myDate.getSeconds() ); </script> </body> </html>
출력
Converted Date:1/1/2018 12:20:49