Skip to content

Commit 22cd68d

Browse files
committed
adding the manuals and specifications article to the repository
1 parent 6ae7d0d commit 22cd68d

File tree

8 files changed

+41
-0
lines changed

8 files changed

+41
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Manuals and specifications
2+
3+
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.
4+
5+
## Specification
6+
7+
**The ECMA-262 specification** contains the most in-depth, detailed and formalized information about JavaScript. It defines the language.
8+
9+
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.
10+
11+
The latest draft is at <https://tc39.es/ecma262/>.
12+
13+
To read about new bleeding-edge features, that are "almost standard", see proposals at <https://github.com/tc39/proposals>.
14+
15+
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.
16+
17+
## Manuals
18+
19+
- **MDN (Mozilla) JavaScript Reference** is a manual with examples and other information. It's great to get in-depth information about individual language functions, methods etc.
20+
21+
One can find it at <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference>.
22+
23+
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.
24+
25+
26+
- **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+
28+
Also, we can use an internet search with phrases such as "RegExp MSDN" or "RegExp MSDN jscript".
29+
30+
## Feature support
31+
32+
JavaScript is a developing language, new features get added regularly.
33+
34+
To see their support among browser-based and other engines, see:
35+
36+
- <http://caniuse.com> - per-feature tables of support, e.g. to see which engines support modern cryptography functions: <http://caniuse.com/#feat=cryptography>.
37+
- <https://kangax.github.io/compat-table> - a table with language features and engines that support those or don't support.
38+
39+
All these resources are useful in real-life development, as they contain valuable information about language details, their support etc.
40+
41+
Please remember them (or this page) for the cases when you need in-depth information about a particular feature.

0 commit comments

Comments
 (0)