From 87401b2721cab8c537f2da9c0a93d6c1d8af7288 Mon Sep 17 00:00:00 2001 From: olebrussels Date: Mon, 9 Oct 2017 13:02:41 +0000 Subject: [PATCH] Updates numbers/operators.md Auto commit by GitBook Editor --- README.md | 8 ++++---- basics/comments.md | 6 +++--- numbers/operators.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 7ec588c8..625fa3f6 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -Learn Javascript -====== +# Learn Javascript -This book will teach you the basics of programming and Javascript. Whether you are an experienced programmer or not, this book is intended for everyone who wishes to learn the JavaScript programming language. +This book a great personl teach you the basics of programming and Javascript. Whether you are an experienced programmer or not, this book is intended for everyone who wishes to learn the JavaScript programming language. ![Screen](./assets/intro.png) -JavaScript (*JS for short*) is the programming language that enables web pages to respond to user interaction beyond the basic level. It was created in 1995, and is today one of the most famous and used programming languages. +JavaScript \(_JS for short_\) is the programming language that enables web pages to respond to user interaction beyond the basic level. It was created in 1995, and is today one of the most famous and used programming languages. + diff --git a/basics/comments.md b/basics/comments.md index 21d9c8d2..2ce10b4e 100644 --- a/basics/comments.md +++ b/basics/comments.md @@ -21,16 +21,13 @@ it will be ignored by the interpreter var a = "this is a variable defined in a statement"; ``` - --- Mark the editor's contents as a comment ```js - Mark me as a comment or I'll throw an error - ``` ```js @@ -45,3 +42,6 @@ assert(true); ``` --- + + + diff --git a/numbers/operators.md b/numbers/operators.md index e6202271..3a8f1dff 100644 --- a/numbers/operators.md +++ b/numbers/operators.md @@ -2,7 +2,7 @@ You can apply mathematic operations to numbers using some basic operators like: -* **Addition**: ```c = a + b``` +* **Addition**: ```c = a + b + c``` * **Subtraction**: ```c = a - b``` * **Multiplication**: ```c = a * b``` * **Division**: ```c = a / b```