Skip to content

Commit 5a71d10

Browse files
authored
Merge pull request #4 from javascript-tutorial/master
Updating Repo 27-01-2020
2 parents f423a00 + ff042a0 commit 5a71d10

File tree

1,676 files changed

+59218
-26126
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,676 files changed

+59218
-26126
lines changed

Diff for: .gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* text=auto eol=lf
2+
*.svg binary

Diff for: 1-js/01-getting-started/1-intro/article.md

+36-37
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
# An Introduction to JavaScript
22

3-
Let's see what's so special about JavaScript, what we can achieve with it and which other technologies play well with it.
3+
Let's see what's so special about JavaScript, what we can achieve with it, and which other technologies play well with it.
44

55
## What is JavaScript?
66

7-
*JavaScript* was initially created to *"make webpages alive"*.
7+
*JavaScript* was initially created to *"make web pages alive"*.
88

9-
The programs in this language are called *scripts*. They can be written right in the HTML and execute automatically as the page loads.
9+
The programs in this language are called *scripts*. They can be written right in a web page's HTML and run automatically as the page loads.
1010

11-
Scripts are provided and executed as a plain text. They don't need a special preparation or a compilation to run.
11+
Scripts are provided and executed as plain text. They don't need special preparation or compilation to run.
1212

13-
In this aspect, JavaScript is very different from another language called [Java](http://en.wikipedia.org/wiki/Java).
13+
In this aspect, JavaScript is very different from another language called [Java](https://en.wikipedia.org/wiki/Java_(programming_language)).
1414

15-
```smart header="Why <u>Java</u>Script?"
16-
When JavaScript was created, it initially had another name: "LiveScript". But Java language was very popular at that time, so it was decided that positioning a new language as a "younger brother" of Java would help.
15+
```smart header="Why is it called <u>Java</u>Script?"
16+
When JavaScript was created, it initially had another name: "LiveScript". But Java was very popular at that time, so it was decided that positioning a new language as a "younger brother" of Java would help.
1717
18-
But as it evolved, JavaScript became a fully independent language, with its own specification called [ECMAScript](http://en.wikipedia.org/wiki/ECMAScript), and now it has no relation to Java at all.
18+
But as it evolved, JavaScript became a fully independent language with its own specification called [ECMAScript](http://en.wikipedia.org/wiki/ECMAScript), and now it has no relation to Java at all.
1919
```
2020

21-
At present, JavaScript can execute not only in the browser, but also on the server, or actually on any device where there exists a special program called [the JavaScript engine](https://en.wikipedia.org/wiki/JavaScript_engine).
21+
Today, JavaScript can execute not only in the browser, but also on the server, or actually on any device that has a special program called [the JavaScript engine](https://en.wikipedia.org/wiki/JavaScript_engine).
2222

23-
The browser has an embedded engine, sometimes it's also called a "JavaScript virtual machine".
23+
The browser has an embedded engine sometimes called a "JavaScript virtual machine".
2424

25-
Different engines have different "codenames", for example:
25+
Different engines have different "codenames". For example:
2626

2727
- [V8](https://en.wikipedia.org/wiki/V8_(JavaScript_engine)) -- in Chrome and Opera.
2828
- [SpiderMonkey](https://en.wikipedia.org/wiki/SpiderMonkey) -- in Firefox.
29-
- ...There are other codenames like "Trident", "Chakra" for different versions of IE, "ChakraCore" for Microsoft Edge, "Nitro" and "SquirrelFish" for Safari etc.
29+
- ...There are other codenames like "Trident" and "Chakra" for different versions of IE, "ChakraCore" for Microsoft Edge, "Nitro" and "SquirrelFish" for Safari, etc.
3030

31-
The terms above are good to remember, because they are used in developer articles on the internet. We'll use them too. For instance, if "a feature X is supported by V8", then it probably works in Chrome and Opera.
31+
The terms above are good to remember because they are used in developer articles on the internet. We'll use them too. For instance, if "a feature X is supported by V8", then it probably works in Chrome and Opera.
3232

3333
```smart header="How do engines work?"
3434
@@ -38,16 +38,16 @@ Engines are complicated. But the basics are easy.
3838
2. Then it converts ("compiles") the script to the machine language.
3939
3. And then the machine code runs, pretty fast.
4040
41-
The engine applies optimizations on every stage of the process. It even watches the compiled script as it runs, analyzes the data that flows through it and applies optimizations to the machine code based on that knowledge. At the end, scripts are quite fast.
41+
The engine applies optimizations at each step of the process. It even watches the compiled script as it runs, analyzes the data that flows through it, and further optimizes the machine code based on that knowledge.
4242
```
4343

4444
## What can in-browser JavaScript do?
4545

46-
The modern JavaScript is a "safe" programming language. It does not provide low-level access to memory or CPU, because it was initially created for browsers which do not require it.
46+
Modern JavaScript is a "safe" programming language. It does not provide low-level access to memory or CPU, because it was initially created for browsers which do not require it.
4747

48-
The capabilities greatly depend on the environment that runs JavaScript. For instance, [Node.JS](https://wikipedia.org/wiki/Node.js) supports functions that allow JavaScript to read/write arbitrary files, perform network requests etc.
48+
JavaScript's capabilities greatly depend on the environment it's running in. For instance, [Node.js](https://wikipedia.org/wiki/Node.js) supports functions that allow JavaScript to read/write arbitrary files, perform network requests, etc.
4949

50-
In-browser JavaScript can do everything related to webpage manipulation, interaction with the user and the webserver.
50+
In-browser JavaScript can do everything related to webpage manipulation, interaction with the user, and the webserver.
5151

5252
For instance, in-browser JavaScript is able to:
5353

@@ -61,7 +61,7 @@ For instance, in-browser JavaScript is able to:
6161

6262
JavaScript's abilities in the browser are limited for the sake of the user's safety. The aim is to prevent an evil webpage from accessing private information or harming the user's data.
6363

64-
The examples of such restrictions are:
64+
Examples of such restrictions include:
6565

6666
- JavaScript on a webpage may not read/write arbitrary files on the hard disk, copy them or execute programs. It has no direct access to OS system functions.
6767

@@ -70,31 +70,29 @@ The examples of such restrictions are:
7070
There are ways to interact with camera/microphone and other devices, but they require a user's explicit permission. So a JavaScript-enabled page may not sneakily enable a web-camera, observe the surroundings and send the information to the [NSA](https://en.wikipedia.org/wiki/National_Security_Agency).
7171
- Different tabs/windows generally do not know about each other. Sometimes they do, for example when one window uses JavaScript to open the other one. But even in this case, JavaScript from one page may not access the other if they come from different sites (from a different domain, protocol or port).
7272

73-
This is called the "Same Origin Policy". To work around that, *both pages* must contain a special JavaScript code that handles data exchange.
73+
This is called the "Same Origin Policy". To work around that, *both pages* must agree for data exchange and contain a special JavaScript code that handles it. We'll cover that in the tutorial.
7474

75-
The limitation is again for user's safety. A page from `http://anysite.com` which a user has opened must not be able to access another browser tab with the URL `http://gmail.com` and steal information from there.
76-
- JavaScript can easily communicate over the net to the server where the current page came from. But its ability to receive data from other sites/domains is crippled. Though possible, it requires explicit agreement (expressed in HTTP headers) from the remote side. Once again, that's safety limitations.
75+
This limitation is, again, for the user's safety. A page from `http://anysite.com` which a user has opened must not be able to access another browser tab with the URL `http://gmail.com` and steal information from there.
76+
- JavaScript can easily communicate over the net to the server where the current page came from. But its ability to receive data from other sites/domains is crippled. Though possible, it requires explicit agreement (expressed in HTTP headers) from the remote side. Once again, that's a safety limitation.
7777

78-
![](limitations.png)
78+
![](limitations.svg)
7979

80-
Such limits do not exist if JavaScript is used outside of the browser, for example on a server. Modern browsers also allow installing plugin/extensions which may get extended permissions.
80+
Such limits do not exist if JavaScript is used outside of the browser, for example on a server. Modern browsers also allow plugin/extensions which may ask for extended permissions.
8181

8282
## What makes JavaScript unique?
8383

8484
There are at least *three* great things about JavaScript:
8585

8686
```compare
8787
+ Full integration with HTML/CSS.
88-
+ Simple things done simply.
89-
+ Supported by all major browsers and enabled by default.
88+
+ Simple things are done simply.
89+
+ Support by all major browsers and enabled by default.
9090
```
91+
JavaScript is the only browser technology that combines these three things.
9192

92-
Combined, these three things exist only in JavaScript and no other browser technology.
93-
94-
That's what makes JavaScript unique. That's why it's the most widespread tool to create browser interfaces.
95-
96-
While planning to learn a new technology, it's beneficial to check its perspectives. So let's move on to the modern trends that include new languages and browser abilities.
93+
That's what makes JavaScript unique. That's why it's the most widespread tool for creating browser interfaces.
9794

95+
That said, JavaScript also allows to create servers, mobile applications, etc.
9896

9997
## Languages "over" JavaScript
10098

@@ -104,18 +102,19 @@ That's to be expected, because projects and requirements are different for every
104102

105103
So recently a plethora of new languages appeared, which are *transpiled* (converted) to JavaScript before they run in the browser.
106104

107-
Modern tools make the transpilation very fast and transparent, actually allowing developers to code in another language and autoconverting it "under the hood".
105+
Modern tools make the transpilation very fast and transparent, actually allowing developers to code in another language and auto-converting it "under the hood".
108106

109107
Examples of such languages:
110108

111-
- [CoffeeScript](http://coffeescript.org/) is a "syntactic sugar" for JavaScript, it introduces shorter syntax, allowing to write more precise and clear code. Usually Ruby devs like it.
112-
- [TypeScript](http://www.typescriptlang.org/) is concentrated on adding "strict data typing", to simplify development and support of complex systems. It is developed by Microsoft.
113-
- [Dart](https://www.dartlang.org/) is a standalone language that has its own engine that runs in non-browser environments (like mobile apps). It was initially offered by Google as a replacement for JavaScript, but as of now, browsers require it to be transpiled to JavaScript just like the ones above.
109+
- [CoffeeScript](http://coffeescript.org/) is a "syntactic sugar" for JavaScript. It introduces shorter syntax, allowing us to write clearer and more precise code. Usually, Ruby devs like it.
110+
- [TypeScript](http://www.typescriptlang.org/) is concentrated on adding "strict data typing" to simplify the development and support of complex systems. It is developed by Microsoft.
111+
- [Flow](http://flow.org/) also adds data typing, but in a different way. Developed by Facebook.
112+
- [Dart](https://www.dartlang.org/) is a standalone language that has its own engine that runs in non-browser environments (like mobile apps), but also can be transpiled to JavaScript. Developed by Google.
114113

115-
There are more. Of course even if we use one of those languages, we should also know JavaScript, to really understand what we're doing.
114+
There are more. Of course, even if we use one of transpiled languages, we should also know JavaScript to really understand what we're doing.
116115

117116
## Summary
118117

119-
- JavaScript was initially created as a browser-only language, but now it is used in many other environments as well.
120-
- At this moment, JavaScript has a unique position as the most widely-adopted browser language with full integration with HTML/CSS.
118+
- JavaScript was initially created as a browser-only language, but is now used in many other environments as well.
119+
- Today, JavaScript has a unique position as the most widely-adopted browser language with full integration with HTML/CSS.
121120
- There are many languages that get "transpiled" to JavaScript and provide certain features. It is recommended to take a look at them, at least briefly, after mastering JavaScript.

Diff for: 1-js/01-getting-started/1-intro/limitations.png

-35.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)