How to get the Unix Time in JavaScript?
Posted by Joys of Programming on in JavaScript
Using Date, we can display the time in UTC. getTime() can be used to get the time in epochs often known as the Unix Time or the Epoch Time, which is the number of seconds passed since January 1, 1970
<head>
<title>Unix Time in JavaScript</title>
</head>
<body>
<script type="text/javascript">
<!--
var time = new Date();
var currentTimeMillis = time.getTime();
document.write("Time "+ currentTimeMillis + "sec");
-->
</script>
</body>
The output of this script will be
Time 1259598783167sec
Comments:
![Reblog this post [with Zemanta]](http://img.zemanta.com/reblog_e.png?x-id=a04f8877-cbc5-451e-ad16-d16bbbe6bc33)