From fb313612a988c390f5ad5286f48200b5cb2165d9 Mon Sep 17 00:00:00 2001 From: joaquinelio Date: Fri, 13 May 2022 18:05:24 -0300 Subject: [PATCH] rephrase --- 1-js/05-data-types/04-array/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/04-array/article.md b/1-js/05-data-types/04-array/article.md index 7ccf5d4e..821f3182 100644 --- a/1-js/05-data-types/04-array/article.md +++ b/1-js/05-data-types/04-array/article.md @@ -530,7 +530,7 @@ The call to `new Array(number)` creates an array with the given length, but with Getting the elements: - we can get element by its index, like `arr[0]` -- also we can use `at(i)` method to get negative-index elements, for negative values of `i`, it steps back from the end of the array. In the rest it works same as `arr[i]`, if `i >= 0`. +- also we can use `at(i)` method that allows negative indexes. For negative values of `i`, it steps back from the end of the array. If `i >= 0`, it works same as `arr[i]`. We can use an array as a deque with the following operations: