From 6c23a46f96d02a3cdc4ddc3d87495b5a66141af1 Mon Sep 17 00:00:00 2001 From: Derrek Gass Date: Thu, 8 Oct 2020 12:45:32 -0700 Subject: [PATCH] moving into variables --- solutions/day-01/index.html | 1 + solutions/day-01/main.js | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 solutions/day-01/main.js diff --git a/solutions/day-01/index.html b/solutions/day-01/index.html index 12b01f8..b6f688d 100644 --- a/solutions/day-01/index.html +++ b/solutions/day-01/index.html @@ -8,5 +8,6 @@ + \ No newline at end of file diff --git a/solutions/day-01/main.js b/solutions/day-01/main.js new file mode 100644 index 0000000..827a3f9 --- /dev/null +++ b/solutions/day-01/main.js @@ -0,0 +1,5 @@ +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