From 212f956f352c39e70ba371b5d664ba46a8f8ed9b Mon Sep 17 00:00:00 2001 From: Norman Harold Bernales Date: Fri, 17 Mar 2023 23:17:00 +0800 Subject: [PATCH] First commit --- 01_Day_Introduction/01_day_starter/helloworld.js | 1 - .../01_day_starter/introduction.js | 1 - .../1_day_of_javascript/helloworld.js | 1 + .../1_day_of_javascript/index.html | 15 +++++++++++++++ .../1_day_of_javascript/introduction.js | 1 + 5 files changed, 17 insertions(+), 2 deletions(-) delete mode 100644 01_Day_Introduction/01_day_starter/helloworld.js delete mode 100644 01_Day_Introduction/01_day_starter/introduction.js create mode 100644 01_Day_Introduction/1_day_of_javascript/helloworld.js create mode 100644 01_Day_Introduction/1_day_of_javascript/index.html create mode 100644 01_Day_Introduction/1_day_of_javascript/introduction.js diff --git a/01_Day_Introduction/01_day_starter/helloworld.js b/01_Day_Introduction/01_day_starter/helloworld.js deleted file mode 100644 index 8c9e2c0..0000000 --- a/01_Day_Introduction/01_day_starter/helloworld.js +++ /dev/null @@ -1 +0,0 @@ -console.log('Hello, World!') \ No newline at end of file diff --git a/01_Day_Introduction/01_day_starter/introduction.js b/01_Day_Introduction/01_day_starter/introduction.js deleted file mode 100644 index 316199c..0000000 --- a/01_Day_Introduction/01_day_starter/introduction.js +++ /dev/null @@ -1 +0,0 @@ -console.log('Welcome to 30DaysOfJavaScript') \ No newline at end of file diff --git a/01_Day_Introduction/1_day_of_javascript/helloworld.js b/01_Day_Introduction/1_day_of_javascript/helloworld.js new file mode 100644 index 0000000..4a41eb8 --- /dev/null +++ b/01_Day_Introduction/1_day_of_javascript/helloworld.js @@ -0,0 +1 @@ +console.log("Hello World!"); //print Hello World! in the console \ No newline at end of file diff --git a/01_Day_Introduction/1_day_of_javascript/index.html b/01_Day_Introduction/1_day_of_javascript/index.html new file mode 100644 index 0000000..20d6053 --- /dev/null +++ b/01_Day_Introduction/1_day_of_javascript/index.html @@ -0,0 +1,15 @@ + + + + + + + Day 1 + + + + + + + + \ No newline at end of file diff --git a/01_Day_Introduction/1_day_of_javascript/introduction.js b/01_Day_Introduction/1_day_of_javascript/introduction.js new file mode 100644 index 0000000..8dd9af0 --- /dev/null +++ b/01_Day_Introduction/1_day_of_javascript/introduction.js @@ -0,0 +1 @@ +console.log('Welcome to Javascript' + ' Day 1'); //print Welcome to Javascript Day 1 \ No newline at end of file