From 73fd173f99925c6e28db023623a4e1ac77a6eedc Mon Sep 17 00:00:00 2001 From: Muhammad Bilal Date: Tue, 12 Jan 2021 23:16:01 +0500 Subject: [PATCH] Update article.md fix spelling of `further` --- 1-js/05-data-types/10-destructuring-assignment/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 `"..."`: