Skip to content
Advertisement

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.

Advertisement

Answer

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.

Advertisement