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