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.
2 parents 3b41c70 + 4308515 commit 2867ffcCopy full SHA for 2867ffc
1 file changed
1-js/05-data-types/10-destructuring-assignment/article.md
@@ -65,7 +65,7 @@ alert( title ); // Consul
65
...На самом деле мы можем использовать любой перебираемый объект, не только массивы:
66
67
```js
68
-let [a, b, c] = "abc"; // ["a", "b", "c"]
+let [a, b, c] = "abc";
69
let [one, two, three] = new Set([1, 2, 3]);
70
```
71
0 commit comments