This commit is contained in:
Violet.Lee 2019-10-14 03:22:02 +09:00 committed by GitHub
parent a0bfa924a1
commit effb5b9308
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,7 @@ To create a new `Date` object call `new Date()` with one of the following argume
For instance:
```js
new Date(2011, 0, 1, 0, 0, 0, 0); // // 1 Jan 2011, 00:00:00
new Date(2011, 0, 1, 0, 0, 0, 0); // 1 Jan 2011, 00:00:00
new Date(2011, 0, 1); // the same, hours etc are 0 by default
```