From 1326bf8254688896d8ebd515288f52a8c248993b Mon Sep 17 00:00:00 2001 From: Asabeneh Date: Thu, 2 Jan 2020 00:02:43 +0200 Subject: [PATCH 1/4] Typo fixes --- readMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readMe.md b/readMe.md index 1d5fcdb..96da9da 100644 --- a/readMe.md +++ b/readMe.md @@ -38,7 +38,7 @@ # 📔 Day 1 # Introduction -**Congratulations** for deciding to participate in a 30 days of JavaScript programming challenge . In this challenge you will learn everything you need to be a JavaScript programmer and in general the whole concepts of programming. In the end of the challenge you will get a 30DaysOfPython programming challenge certificate. Join the [telegram group](https://t.me/ThirtyDaysOfJavaScript). +**Congratulations** for deciding to participate in a 30 days of JavaScript programming challenge . In this challenge you will learn everything you need to be a JavaScript programmer and in general the whole concepts of programming. In the end of the challenge you will get a 30DaysOfJavaScript programming challenge certificate. Join the [telegram group](https://t.me/ThirtyDaysOfJavaScript). **A 30DaysOfJavaScript** is a guide for both beginners and advanced JavaScript developers. Welcome to JavaScript. JavaScript is the language of the browser. From 4ffbb84d98ae2102d5ded8a6c71581138d3e6cc7 Mon Sep 17 00:00:00 2001 From: Asabeneh Date: Thu, 2 Jan 2020 00:11:28 +0200 Subject: [PATCH 2/4] Typo Fixes --- readMe.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readMe.md b/readMe.md index 96da9da..ff2169c 100644 --- a/readMe.md +++ b/readMe.md @@ -154,7 +154,7 @@ console.log("Hello, World!") console.log('Hello, World!') ``` -So far, we so how to display text using a *console.log()*. If we are printing text or string using *console.log()*, the text has to be under single, double or back tick. +So far, we saw how to display text using a *console.log()*. If we are printing text or string using *console.log()*, the text has to be under single, double or back tick. **Example:** ```js console.log("Hello, World!") @@ -178,7 +178,7 @@ console.log(3 ** 2) // Exponential ``` ## Code Editor -We can write code on the browser console but it won't be for a big project. In real work environment, developers use different code editors to write codes. In this 30 days python programming challenge we will use visual studio code. +We can write code on the browser console but it won't be for a big project. In real work environment, developers use different code editors to write codes. In this 30 days python JavaScript challenge we will use visual studio code. ### Installing Visual Studio Code Visual studio code is a very popular open source text editor and I would recommend to [download](https://code.visualstudio.com/) visual studio code, but if you are in favor of other editors, feel free to follow with what you have. From 6b21e8b267eb84385d6752e38247325bf2a0489a Mon Sep 17 00:00:00 2001 From: Asabeneh Date: Thu, 2 Jan 2020 00:15:16 +0200 Subject: [PATCH 3/4] Fixes --- readMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readMe.md b/readMe.md index ff2169c..184505e 100644 --- a/readMe.md +++ b/readMe.md @@ -239,7 +239,7 @@ First let us write on the head part of the page. ``` -This is how we write inline script most of the time. Writing the JavaScript code in the body section is the most preferred place. Open the browser console to see the out put from the console.log() +This is how we write internal script most of the time. Writing the JavaScript code in the body section is the most preferred place. Open the browser console to see the out put from the console.log() ```html From 5a3f62bc8017b8fee72007604aff6ea1fc6203ee Mon Sep 17 00:00:00 2001 From: Asabeneh Date: Thu, 2 Jan 2020 00:18:46 +0200 Subject: [PATCH 4/4] Fixes --- readMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readMe.md b/readMe.md index 184505e..435d9da 100644 --- a/readMe.md +++ b/readMe.md @@ -260,7 +260,7 @@ Open the browser console to see the out put from the console.log() ## External script Similar to the internal script, the external script link can be on the header or body but it is preferred to put it in the body. -First we should create an external JavaScript file with .js extension. Any JavaScript file ends with .js. Create a file introduction.js inside your project directory and write the following code and link this fat the body +First we should create an external JavaScript file with .js extension. Any JavaScript file ends with .js. Create a file introduction.js inside your project directory and write the following code and link this. js file at the bottom of the body ```js console.log('Welcome to 30DaysOfJavaScript') ```