From 2cb352f29f1170f8871dd6ca5474c91c5820524c Mon Sep 17 00:00:00 2001 From: jlandis320 Date: Thu, 5 Jan 2023 22:57:33 -0500 Subject: [PATCH] begins js day one --- 01_Day_JavaScript_Refresher/helloworld.js | 1 + 01_Day_JavaScript_Refresher/index.html | 14 ++++++++++++++ 01_Day_JavaScript_Refresher/introduction.js | 1 + 3 files changed, 16 insertions(+) create mode 100644 01_Day_JavaScript_Refresher/helloworld.js create mode 100644 01_Day_JavaScript_Refresher/index.html create mode 100644 01_Day_JavaScript_Refresher/introduction.js diff --git a/01_Day_JavaScript_Refresher/helloworld.js b/01_Day_JavaScript_Refresher/helloworld.js new file mode 100644 index 0000000..a0b3681 --- /dev/null +++ b/01_Day_JavaScript_Refresher/helloworld.js @@ -0,0 +1 @@ +console.log("Hello world!") \ No newline at end of file diff --git a/01_Day_JavaScript_Refresher/index.html b/01_Day_JavaScript_Refresher/index.html new file mode 100644 index 0000000..4b9f0fb --- /dev/null +++ b/01_Day_JavaScript_Refresher/index.html @@ -0,0 +1,14 @@ + + + + + + + + + Document + + + + + \ No newline at end of file diff --git a/01_Day_JavaScript_Refresher/introduction.js b/01_Day_JavaScript_Refresher/introduction.js new file mode 100644 index 0000000..7a5f112 --- /dev/null +++ b/01_Day_JavaScript_Refresher/introduction.js @@ -0,0 +1 @@ +console.log("Welcome") \ No newline at end of file