diff --git a/1-js/05-data-types/10-destructuring-assignment/article.md b/1-js/05-data-types/10-destructuring-assignment/article.md index 9f4c3b85..e9077a59 100644 --- a/1-js/05-data-types/10-destructuring-assignment/article.md +++ b/1-js/05-data-types/10-destructuring-assignment/article.md @@ -160,7 +160,7 @@ let [name1, name2] = ["Julius", "Caesar", "Consul", "of the Roman Republic"]; alert(name1); // Julius alert(name2); // Caesar -// Furher items aren't assigned anywhere +// Further items aren't assigned anywhere ``` If we'd like also to gather all that follows -- we can add one more parameter that gets "the rest" using three dots `"..."`: