Files
30-seconds-of-code/snippets/json-to-date.md
Stefan Feješ e0be92b9da Add jsonToDate
2017-12-16 12:09:13 +01:00

11 lines
320 B
Markdown

### Convert JSON to date
Converts dates coming from ajax as JSON 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() }`};
// jsonToDate(/Date(1489525200000)/) -> "14/3/2017"
```