Files
30-seconds-of-code/snippets/fromTimestamp.md
Isabelle Viktoria Maciohsek 8bf67754ce Make expertise a field
2022-03-01 20:21:45 +02:00

21 lines
464 B
Markdown

---
title: Date from Unix timestamp
tags: date
expertise: beginner
firstSeen: 2020-10-15T21:57:17+03:00
lastUpdated: 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 the `Date` constructor to create a new `Date` object.
```js
const fromTimestamp = timestamp => new Date(timestamp * 1000);
```
```js
fromTimestamp(1602162242); // 2020-10-08T13:04:02.000Z
```