Merge pull request #2902 from jeffchase/patch-1

Date task solution: use standard date time string
This commit is contained in:
Ilya Kantor 2022-06-18 22:44:39 +03:00 committed by GitHub
commit 25952f030f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,6 +13,6 @@ We could also create a date from a string, like this:
```js run
//new Date(datastring)
let d2 = new Date("February 20, 2012 03:12:00");
let d2 = new Date("2012-02-20T03:12");
alert( d2 );
```