From 15d0e14b87dae90e6511a0693abd2b9fa19824cd Mon Sep 17 00:00:00 2001 From: Yofri Date: Tue, 27 Jun 2017 21:31:13 +0700 Subject: [PATCH] typo --- 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 11905ba4..d836a12d 100644 --- a/1-js/05-data-types/05-array-methods/article.md +++ b/1-js/05-data-types/05-array-methods/article.md @@ -100,7 +100,7 @@ alert( arr ); // "I", "study", "complex", "language", "JavaScript" ``` ````smart header="Negative indexes allowed" -Here and in other array methods, negative indexes are allowed. The specify the position from the end of the array, like here: +Here and in other array methods, negative indexes are allowed. They specify the position from the end of the array, like here: ```js run let arr = [1, 2, 5]