0

this date format 1459468800000 corresponds to "April 2016".

Can anybody explain this to me?

What js-library can handle the transformation?

Thanks in advance.

cysus
  • 143
  • 1
  • 12
  • 1
    Possible duplicate of [Converting milliseconds to a date (jQuery/JS)](http://stackoverflow.com/questions/4673527/converting-milliseconds-to-a-date-jquery-js) – Tim B Apr 20 '16 at 09:16
  • 2
    Open the console and type `new Date(1459468800000)` - it converts it without the need of a library – Reinstate Monica Cellio Apr 20 '16 at 09:18

1 Answers1

0

That is Epoch time, the count of milliseconds from the 1970-01-01. First introduced with UNIX.

Nina Scholz
  • 376,160
  • 25
  • 347
  • 392