From 7bf7aa5675ee8e23bd96a4cf09dd9d3c3361f17f Mon Sep 17 00:00:00 2001 From: Su Date: Tue, 8 Aug 2017 15:28:35 +0900 Subject: [PATCH] fix a typo add "is" --- 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 635205dd..781699f7 100644 --- a/1-js/05-data-types/04-array/article.md +++ b/1-js/05-data-types/04-array/article.md @@ -4,7 +4,7 @@ Objects allow to store keyed collections of values. That's fine. But quite often we find that we need an *ordered collection*, where we have a 1st, a 2nd, a 3rd element and so on. For example, we need that to store a list of something: users, goods, HTML elements etc. -It not convenient to use an object here, because it provides no methods to manage the order of elements. We can’t insert a new property “between” the existing ones. Objects are just not meant for such use. +It is not convenient to use an object here, because it provides no methods to manage the order of elements. We can’t insert a new property “between” the existing ones. Objects are just not meant for such use. There exists a special data structure named `Array`, to store ordered collections.