user3592479
user3592479

Reputation: 695

How to Convert Milliseconds to Date in JS?

My scenario is to convert the data of milliseconds to a date format. I have tried a lot as here http://jsbin.com/jeququ/1/ but it is only working for a limited milliseconds value, and fails if the value is high. I am looking to replicate the functionality as http://www.ruddwire.com/handy-code/date-to-millisecond-calculators/#.VJAp9lWUe1R

Milliseconds Since : Thu Jan 01 1970 05:30:00 GMT+0530

Upvotes: 7

Views: 13903

Answers (2)

user3592479
user3592479

Reputation: 695

var d = new Date(+milliseconds);

Upvotes: 9

Sagar Koshti
Sagar Koshti

Reputation: 1466

This should work:

var d = new Date(milliseconds);

Upvotes: 16

Related Questions