From 085361b7211646b88835d7791d95076f0bc200bf Mon Sep 17 00:00:00 2001 From: steven Date: Wed, 7 Oct 2020 14:01:07 +0800 Subject: [PATCH] Fix typo --- 01_Day_JavaScript_Refresher/01_javascript_refresher.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_Day_JavaScript_Refresher/01_javascript_refresher.md b/01_Day_JavaScript_Refresher/01_javascript_refresher.md index 355e088..0c808d6 100644 --- a/01_Day_JavaScript_Refresher/01_javascript_refresher.md +++ b/01_Day_JavaScript_Refresher/01_javascript_refresher.md @@ -324,7 +324,7 @@ An array is a collection of different data types which are ordered and changeabl #### How to create an empty array In JavaScript, we can create an array in different ways. Let us see different ways to create an array. -It is very common to use _const_ instead of _let_ to declare an array variable. If you ar using const it means you do not use that variable name again. +It is very common to use _const_ instead of _let_ to declare an array variable. If you are using const it means you do not use that variable name again. - Using Array constructor