williamsandonz
williamsandonz

Reputation: 16430

Convert UTC time to javascript date

I am using highcharts a JS library it gives me the time of a point in UTC format: 2592000000 which should correlate to a date somewhere in 2011.

How do I get the actual date of this?

Upvotes: 2

Views: 914

Answers (2)

Hristo
Hristo

Reputation: 46557

UPDATE

Checkout date.js. It extends the Date.parse method and Date.parseExact method and you can specify a format string.

http://code.google.com/p/datejs/wiki/APIDocumentation


Check out moment.js...

A lightweight javascript date library for parsing, manipulating, and formatting dates.

http://momentjs.com/docs/#/parsing/unix

Upvotes: 2

Devnook
Devnook

Reputation: 1103

Try:

var date = new Date(2592000000);
alert(date);

Upvotes: 1

Related Questions