From bba1771ba9be83b67076d61e99d25f58fa614efd Mon Sep 17 00:00:00 2001 From: Siarhei Bobryk Date: Wed, 23 Mar 2022 12:47:28 +0200 Subject: [PATCH] Replace the "As mentioned earlier" part in ch1.md Maybe I'm wrong (hope I'm not), I don't remember any mentions about an array type at that point of the book. I've tried to find it, but I found nothing. It might be an artefact of the original book (the 1st edition). So I'd replace the "As mentioned earlier" part with something not confusing. I'm not a native English, so probably you have a better idea for the replacement. --- get-started/ch2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-started/ch2.md b/get-started/ch2.md index 434710d12..7e1c2fc07 100644 --- a/get-started/ch2.md +++ b/get-started/ch2.md @@ -123,7 +123,7 @@ You won't encounter direct usage of symbols very often in typical JS programs. T Besides primitives, the other value type in JS is an object value. -As mentioned earlier, arrays are a special type of object that's comprised of an ordered and numerically indexed list of data: +It is worth mentioning that JS arrays are a special type of object that's comprised of an ordered and numerically indexed list of data: ```js var names = [ "Frank", "Kyle", "Peter", "Susan" ];