From f50b304a2bd7663a8cd96f9e13050da1374e6ea0 Mon Sep 17 00:00:00 2001 From: Skubie Doo Date: Sun, 26 Mar 2017 14:24:01 -0400 Subject: [PATCH] Fix typo --- 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 27c2300c..ce67b98a 100644 --- a/1-js/05-data-types/04-array/article.md +++ b/1-js/05-data-types/04-array/article.md @@ -329,7 +329,7 @@ Generally, we shouldn't use `for..in` for arrays. ## A word about "length" -The `length` property automatically updates when we modify the array. To be precies, it is actually not the count of values in the array, but the greatest numeric index plus one. +The `length` property automatically updates when we modify the array. To be precise, it is actually not the count of values in the array, but the greatest numeric index plus one. For instance, a single element with a large index gives a big length: