Files
30-seconds-of-code/snippets_archive/JSONToDate.md
Angelos Chalaris 611729214a Snippet format update
To match the starter (for the migration)
2019-08-13 10:29:12 +03:00

19 lines
400 B
Markdown

---
title: JSONToDate
tags: object,date,beginner
---
Converts a JSON object to a date.
Use `Date()`, to convert dates in JSON format to readable format (`dd/mm/yyyy`).
```js
const JSONToDate = arr => {
const dt = new Date(parseInt(arr.toString().substr(6)));
return `${dt.getDate()}/${dt.getMonth() + 1}/${dt.getFullYear()}`;
};
```
```js
JSONToDate(/Date(1489525200000)/); // "14/3/2017"
```