Files
30-seconds-of-code/snippets/fromTimestamp.md
Isabelle Viktoria Maciohsek 27c168ce55 Bake date into snippets
2021-06-13 13:55:00 +03:00

432 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
fromTimestamp date,beginner 2020-10-15T21:57:17+03:00 2020-10-15T21:57:17+03:00

Creates a Date object from a Unix timestamp.

  • Convert the timestamp to milliseconds by multiplying with 1000.
  • Use new Date() to create a new Date object.
const fromTimestamp = timestamp => new Date(timestamp * 1000);
fromTimestamp(1602162242); // 2020-10-08T13:04:02.000Z