fix(learn): Clarify date format expectations for the Date Format challenge (#41327)

* fix: clarify date format expectations

* chore: apply suggestions from code review

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>

Co-authored-by: Mrugesh Mohapatra <1884376+raisedadead@users.noreply.github.com>
Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
This commit is contained in:
Randell Dawson
2021-03-02 16:46:30 -07:00
committed by GitHub
parent f328bdb93e
commit 57f3c80345

View File

@ -8,14 +8,20 @@ dashedName: date-format
# --description--
Return an array with the current date in the formats:
Return an array with two date strings of the current date with the following specifications:
<ul>
<li>2007-11-23</li>
<li>Friday, November 23, 2007</li>
</ul>
- The first string's date order should be the year number, month number, and day number separated by dashes (`-`).
- The first string's year should be four digits in length.
- The first string's month and day should not contain any leading zeros.
- The second string's weekday and month names should not be abbreviated.
- The second string's day should not contain any leading zeros.
Example output: `['2007-11-23', 'Friday, November 23, 2007']`
Example outputs:
```js
['2007-11-23', 'Friday, November 23, 2007']
['2021-3-2', 'Tuesday, March 2, 2021']
```
# --hints--