Skip to content

Commit 507c4c2

Browse files
Update article.md
destructurizes => destructures
1 parent 5a3db89 commit 507c4c2

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ alert(surname); // Smith
4343
As you can see, the syntax is simple. There are several peculiar details though. Let's see more examples, to better understand it.
4444

4545
````smart header="\"Destructuring\" does not mean \"destructive\"."
46-
It's called "destructuring assignment," because it "destructurizes" by copying items into variables. But the array itself is not modified.
46+
It's called "destructuring assignment," because it "destructures" by copying items into variables. But the array itself is not modified.
4747
4848
It's just a shorter way to write:
4949
```js

0 commit comments

Comments
 (0)