Files
30-seconds-of-code/snippets/get-timestamp.md
Angelos Chalaris 61200d90c4 Kebab file names
2023-04-27 21:58:35 +03:00

586 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Unix timestamp from date date interior-14 2020-10-08T17:15:56+03:00 2020-10-19T22:49:51+03:00

Gets the Unix timestamp from a Date object.

  • Use Date.prototype.getTime() to get the timestamp in milliseconds and divide by 1000 to get the timestamp in seconds.
  • Use Math.floor() to appropriately round the resulting timestamp to an integer.
  • Omit the argument, date, to use the current date.
const getTimestamp = (date = new Date()) => Math.floor(date.getTime() / 1000);
getTimestamp(); // 1602162242