Robert Kaucher
Robert Kaucher

Reputation: 1861

Moment.js and Unix Epoch Conversion

I have a web service that is returning a date as the following string:

/Date(1377907200000)/

I use MomentJS to parse this to a moment object.

moment("/Date(1377907200000)/") => Fri Aug 30 2013 20:00:00 GMT-0400

All of that is fine. But when I call unix() on the object I am given the value 1377907200. This, however, corresponds to Fri Jan 16 1970 17:45:07 GMT-0500. I could just multiply the value returned by unix() but that seems sloppy to me. I suspect that what I am doing by calling unix() is not exactly what I think it is. Do I need to specify some sort of format when calling unix()? What am I missing here?

JSFidle showing the conversion to moment and then back.

Upvotes: 17

Views: 40932

Answers (3)

Sahil Ralkar
Sahil Ralkar

Reputation: 2424

this solution help me to add the format to Epoch date using moment.js.

moment(1377907200000).format("DD MMM YYYY hh:mm A")

Upvotes: 0

Matt Johnson-Pint
Matt Johnson-Pint

Reputation: 241460

The answer provided by meagar is correct, from strictly a JavaScript / Unix time perspective. However, if you just multiply by 1000, you will loose any sub-second precision that might have existed in your data.

Moment.js offers two different methods, as described in the docs. .unix() returns the value in seconds. It is effectively dividing by 1000 and truncating any decimals. You want to use the .valueOf() method, which just returns the milliseconds without modification.

Upvotes: 51

user229044
user229044

Reputation: 239250

In JavaScript land, when you convert a Date to an integer, you get a number of milliseconds since the unix epoch. Traditional Unix time is the number of seconds since epoch. Multiplying by 1000 is the correct option.

Upvotes: 11

Related Questions