Skip to content

Commit 5d1a8ff

Browse files
authored
Merge pull request #1087 from DouglasMV/fixes
Fixes
2 parents 06853a9 + 79c4023 commit 5d1a8ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

1-js/05-data-types/09-destructuring-assignment/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ let {width = prompt("width?"), title = prompt("title?")} = options;
274274
*/!*
275275

276276
alert(title); // Menu
277-
alert(width); // (whatever you the result of prompt is)
277+
alert(width); // (whatever the result of prompt is)
278278
```
279279

280280
We also can combine both the colon and equality:

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

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

5151
`new Date(year, month, date, hours, minutes, seconds, ms)`
52-
: Create the date with the given components in the local time zone. Only two first arguments are obligatory.
52+
: Create the date with the given components in the local time zone. Only the first two arguments are obligatory.
5353

5454
Note:
5555

0 commit comments

Comments
 (0)