We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edfb824 commit 1e44a05Copy full SHA for 1e44a05
1-js/05-data-types/09-destructuring-assignment/article.md
@@ -53,7 +53,7 @@ Unwanted elements of the array can also be thrown away via an extra comma:
53
let [, , title] = ["Julius", "Caesar", "Consul", "of the Roman Republic"];
54
*/!*
55
56
-alert( title ); // Imperator
+alert( title ); // Consul
57
```
58
59
In the code above, the first and second elements of the array are skipped, the third one is assigned to `title`, and the rest is also skipped.
0 commit comments