Add jsonToDate
This commit is contained in:
10
snippets/json-to-date.md
Normal file
10
snippets/json-to-date.md
Normal file
@ -0,0 +1,10 @@
|
||||
### 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"
|
||||
```
|
||||
Reference in New Issue
Block a user