Skip to content

Date and time #3346

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
line 69
  • Loading branch information
bogdanbacosca committed Jan 15, 2023
commit 6e8cce31235262c4150e54d66a50637cb639db7f
2 changes: 1 addition & 1 deletion 1-js/05-data-types/11-date/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ To create a new `Date` object call `new Date()` with one of the following argume

```js
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
new Date(2011, 0, 1); // the same, hours etc. are 0 by default
```

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