Skip to content

Commit 1e20197

Browse files
authored
Fixed sentence
1 parent 4f2a908 commit 1e20197

File tree

1 file changed

+1
-1
lines changed
  • 1-js/05-data-types/09-destructuring-assignment

1 file changed

+1
-1
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:

0 commit comments

Comments
 (0)