From a78d2baef801362ab938323cfd7516d23cd81827 Mon Sep 17 00:00:00 2001 From: Derrek Gass Date: Thu, 8 Oct 2020 15:56:57 -0700 Subject: [PATCH] begin exercise 1 --- solutions/day-01/exercise1.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/solutions/day-01/exercise1.js b/solutions/day-01/exercise1.js index cd6ee3b..fdf3106 100644 --- a/solutions/day-01/exercise1.js +++ b/solutions/day-01/exercise1.js @@ -20,4 +20,11 @@ const countries = [ 'Redux', 'Node', 'MongoDB', - ] \ No newline at end of file +] + +const emptyArr = Array() +console.log(emptyArr) + +const moreThan5 = Array(6) +console.log(moreThan5) +console.log(moreThan5.length) \ No newline at end of file