Remove JSONToDate

This commit is contained in:
Angelos Chalaris
2020-04-16 11:09:02 +03:00
parent 8a45b51dc3
commit 85476aba27
2 changed files with 0 additions and 28 deletions

View File

@ -1,19 +0,0 @@
---
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"
```

View File

@ -1,9 +0,0 @@
const {JSONToDate} = require('./_30s.js');
test('JSONToDate is a Function', () => {
expect(JSONToDate).toBeInstanceOf(Function);
});
test('JSONToDate returns the correct date string', () => {
var reg = new RegExp(`Date(${Date.parse('March 14,2017')})`);
expect(JSONToDate(reg)).toBe('14/3/2017');
});