Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
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 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.

![Screen](./assets/intro.png)

Expand Down
2 changes: 1 addition & 1 deletion basics/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Basics about Programming

In this first chapter, we'll learn the basics of programming and the Javascript language.
In this first chapter, we'll learn the basics of programming and the JavaScript language.

Programming means writing code. A book is made up of chapters, paragraphs, sentences, phrases, words and finally punctuation and letters, likewise a program can be broken down into smaller and smaller components. For now, the most important is a statement. A statement is analogous to a sentence in a book. On its own, it has structure and purpose, but without the context of the other statements around it, it isn't that meaningful.

Expand Down
2 changes: 1 addition & 1 deletion basics/comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Comments are statements that will not be executed by the interpreter, comments are used to mark annotations for other programmers or small descriptions of what your code does, thus making it easier for others to understand what your code does.

In Javascript, comments can be written in 2 different ways:
In JavaScript, comments can be written in 2 different ways:

* Line starting with `//`:

Expand Down
2 changes: 1 addition & 1 deletion basics/variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ y = 5

The same is true for programming languages. In programming, variables are containers for values that change. Variables can hold all kind of values and also the results of computations. Variables have a name and a value separated by an equals sign (=). Variable names can be any letter or word, but bear in mind that there are restrictions from language to language of what you can use, as some words are reserved for other functionality.

Let's check out how it works in Javascript, The following code defines two variables, computes the result of adding the two and defines this result as a value of a third variable.
Let's check out how it works in JavaScript, The following code defines two variables, computes the result of adding the two and defines this result as a value of a third variable.

```js
var x = 5;
Expand Down
2 changes: 1 addition & 1 deletion conditional/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ First of all conditions can be used to ensure that your program works, regardles

The other thing conditions can do for you is allow for branching. You might have encountered branching diagrams before, for example when filling out a form. Basically, this refers to executing different “branches” (parts) of code, depending on if the condition is met or not.

In this chapter, we'll learn the base of conditional logic in Javascript.
In this chapter, we'll learn the base of conditional logic in JavaScript.
2 changes: 1 addition & 1 deletion strings/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var str = 'Our lovely string';
var otherStr = "Another nice string";
```

In Javascript, Strings can contain UTF-8 characters:
In JavaScript, Strings can contain UTF-8 characters:

```js
"中文 español English हिन्दी العربية português বাংলা русский 日本語 ਪੰਜਾਬੀ 한국어";
Expand Down
2 changes: 1 addition & 1 deletion strings/length.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Length

It's easy in Javascript to know how many characters are in string using the property `.length`.
It's easy in JavaScript to know how many characters are in string using the property `.length`.

```js
// Just use the property .length
Expand Down