I am trying to figure out, how i can convert a unix timestamp to a readable date using javascript.
For an example, i want to convert this unix: 1422360000, to a dat
Simply use Date(value)
value: Integer value representing the number of milliseconds since 1 January 1970 00:00:00 UTC (Unix Epoch).
Code
new Date(1422360000)