Logo

Programming-Idioms

History of Idiom 98 > diff from v17 to v18

Edit summary for version 18 by 1.7.4:
New JS implementation by user [1.7.4]

Version 17

2018-08-31, 13:13:00

Version 18

2019-01-24, 12:31:51

Idiom #98 Epoch seconds to date object

Convert a timestamp ts (number of seconds in epoch-time) to a date with time d. E.g. 0 -> 1970-01-01 00:00:00

Idiom #98 Epoch seconds to date object

Convert a timestamp ts (number of seconds in epoch-time) to a date with time d. E.g. 0 -> 1970-01-01 00:00:00

Code
new Date (ts)
Comments bubble
JavaScript is big on type conversion.