From 4ffbb84d98ae2102d5ded8a6c71581138d3e6cc7 Mon Sep 17 00:00:00 2001 From: Asabeneh Date: Thu, 2 Jan 2020 00:11:28 +0200 Subject: [PATCH] Typo Fixes --- readMe.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readMe.md b/readMe.md index 96da9dae..ff2169cc 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.