Logo

Programming-Idioms

History of Idiom 98 > diff from v5 to v6

Edit summary for version 6 by :
New Dart implementation by user [ganymede]

Version 5

2015-11-30, 12:37:32

Version 6

2015-12-30, 01:35:38

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
var d = new DateTime.fromMillisecondsSinceEpoch(ts, isUtc: true);
Doc URL
https://api.dartlang.org/135494/dart-core/DateTime/DateTime.fromMillisecondsSinceEpoch.html