From 706a363b7a10109e878f6f06a7ef5cdd82c92c20 Mon Sep 17 00:00:00 2001 From: marcohl <68298339+marcohl@users.noreply.github.com> Date: Thu, 20 Oct 2022 14:32:15 -0400 Subject: [PATCH] Update 05_day_arrays.md Added an "e" to "ar" in line 62 --- 05_Day_Arrays/05_day_arrays.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05_Day_Arrays/05_day_arrays.md b/05_Day_Arrays/05_day_arrays.md index 0dae635..17ddfba 100644 --- a/05_Day_Arrays/05_day_arrays.md +++ b/05_Day_Arrays/05_day_arrays.md @@ -59,7 +59,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