Skip to content

Commit 6e8cce3

Browse files
committed
line 69
1 parent 2e4ff7a commit 6e8cce3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/05-data-types/11-date/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ To create a new `Date` object call `new Date()` with one of the following argume
6666

6767
```js
6868
new Date(2011, 0, 1, 0, 0, 0, 0); // 1 Jan 2011, 00:00:00
69-
new Date(2011, 0, 1); // the same, hours etc are 0 by default
69+
new Date(2011, 0, 1); // the same, hours etc. are 0 by default
7070
```
7171

7272
The maximal precision is 1 ms (1/1000 sec):

0 commit comments

Comments
 (0)