From 19f7aa4ae5f1940a0678c6b618f9b84b367ab63e Mon Sep 17 00:00:00 2001 From: Mark Date: Mon, 18 Sep 2017 00:00:38 +0300 Subject: [PATCH] Typo - miss letter 't' Typo - miss 't', word 'between' in description arr.join() method --- 1-js/05-data-types/05-array-methods/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/05-array-methods/article.md b/1-js/05-data-types/05-array-methods/article.md index b5a4075b..d61a4a97 100644 --- a/1-js/05-data-types/05-array-methods/article.md +++ b/1-js/05-data-types/05-array-methods/article.md @@ -472,7 +472,7 @@ alert( str.split('') ); // t,e,s,t ``` ```` -The call [arr.join(str)](mdn:js/Array/join) does the reverse to `split`. It creates a string of `arr` items glued by `str` beween them. +The call [arr.join(str)](mdn:js/Array/join) does the reverse to `split`. It creates a string of `arr` items glued by `str` between them. For instance: