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