Skip to content

Commit 43c66e5

Browse files
authored
Merge pull request #1 from javascript-tutorial/master
sync to upstream
2 parents 4f2a908 + e9ded79 commit 43c66e5

File tree

1,075 files changed

+7625
-4928
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,075 files changed

+7625
-4928
lines changed

.gitattributes

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

1-js/01-getting-started/1-intro/article.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Examples of such restrictions include:
7575
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.
7676
- 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

8080
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

@@ -92,8 +92,7 @@ JavaScript is the only browser technology that combines these three things.
9292

9393
That's what makes JavaScript unique. That's why it's the most widespread tool for creating browser interfaces.
9494

95-
While planning to learn a new technology, it's beneficial to check its perspectives. So let's move on to the modern trends affecting it, including new languages and browser abilities.
96-
95+
That said, JavaScript also allows to create servers, mobile applications, etc.
9796

9897
## Languages "over" JavaScript
9998

-34.8 KB
Binary file not shown.
Loading
Binary file not shown.

1-js/01-getting-started/2-manuals-specifications/article.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@
33

44
This book is a *tutorial*. It aims to help you gradually learn the language. But once you're familiar with the basics, you'll need other sources.
55

6-
76
## Specification
87

9-
**The ECMA-262 specification** contains the most in-depth, detailed and formalized information about JavaScript. It defines the language.
8+
[The ECMA-262 specification](https://www.ecma-international.org/publications/standards/Ecma-262.htm) contains the most in-depth, detailed and formalized information about JavaScript. It defines the language.
109

11-
But being that formalized, it's difficult to understand at first. So if you need the most trustworthy source of information about the language details, it's the right place. But it's not for everyday use.
10+
But being that formalized, it's difficult to understand at first. So if you need the most trustworthy source of information about the language details, the specification is the right place. But it's not for everyday use.
1211

1312
The latest draft is at <https://tc39.es/ecma262/>.
1413

15-
To read about bleeding-edge features, that are not yet widely supported, see proposals at <https://github.com/tc39/proposals>.
14+
To read about new bleeding-edge features, including those that are "almost standard" (so-called "stage 3"), see proposals at <https://github.com/tc39/proposals>.
1615

1716
Also, if you're in developing for the browser, then there are other specs covered in the [second part](info:browser-environment) of the tutorial.
1817

@@ -25,11 +24,11 @@ Also, if you're in developing for the browser, then there are other specs covere
2524
Although, it's often best to use an internet search instead. Just use "MDN [term]" in the query, e.g. <https://google.com/search?q=MDN+parseInt> to search for `parseInt` function.
2625

2726

28-
- **MSDN** – Microsoft manual with a lot of information, including JavaScript (often referrerd to as JScript). If one needs something specific to Internet Explorer, better go there: <http://msdn.microsoft.com/>.
27+
- **MSDN** – Microsoft manual with a lot of information, including JavaScript (often referred to as JScript). If one needs something specific to Internet Explorer, better go there: <http://msdn.microsoft.com/>.
2928

3029
Also, we can use an internet search with phrases such as "RegExp MSDN" or "RegExp MSDN jscript".
3130

32-
## Feature support
31+
## Compatibility tables
3332

3433
JavaScript is a developing language, new features get added regularly.
3534

1-js/01-getting-started/4-devtools/article.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ Open Preferences and go to the "Advanced" pane. There's a checkbox at the bottom
5050

5151
Now `key:Cmd+Opt+C` can toggle the console. Also, note that the new top menu item named "Develop" has appeared. It has many commands and options.
5252

53-
## Multi-line input
54-
53+
```smart header="Multi-line input"
5554
Usually, when we put a line of code into the console, and then press `key:Enter`, it executes.
5655
57-
To insert multiple lines, press `key:Shift+Enter`.
56+
To insert multiple lines, press `key:Shift+Enter`. This way one can enter long fragments of JavaScript code.
57+
```
5858

5959
## Summary
6060

2.08 KB
Loading
Loading

0 commit comments

Comments
 (0)