From 7e912ab63949b6ac3b4db0bdec29637168735d5a Mon Sep 17 00:00:00 2001 From: Derrek Gass Date: Thu, 8 Oct 2020 12:47:20 -0700 Subject: [PATCH] moving into variables --- solutions/day-01/main.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/solutions/day-01/main.js b/solutions/day-01/main.js index 827a3f9..2d2a48b 100644 --- a/solutions/day-01/main.js +++ b/solutions/day-01/main.js @@ -2,4 +2,8 @@ let firstName = 'Asabeneh' firstName = 'Eyob' const PI = 3.14 // Not allowed to reassign PI to a new value -// PI = 3. \ No newline at end of file +// PI = 3. + + +const arr = [] +console.log(arr) \ No newline at end of file