0% found this document useful (0 votes)
4 views2 pages

Manuals and Specifications

This document serves as a tutorial for learning JavaScript, emphasizing the importance of the ECMA-262 specification for in-depth language details. It also highlights resources like the MDN JavaScript Reference and compatibility tables for feature support across different engines. The document encourages users to utilize these resources for real-life development and understanding of JavaScript features.

Uploaded by

rakibul8998r11
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views2 pages

Manuals and Specifications

This document serves as a tutorial for learning JavaScript, emphasizing the importance of the ECMA-262 specification for in-depth language details. It also highlights resources like the MDN JavaScript Reference and compatibility tables for feature support across different engines. The document encourages users to utilize these resources for real-life development and understanding of JavaScript features.

Uploaded by

rakibul8998r11
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

3/9/25, 11:54 AM Manuals and specifications


EN
Buy EPUB/PDF 
 → The JavaScript language → An introduction

 July 10, 2022


Manuals and specifications
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 resources.

Specification
The ECMA-262 specification contains the most in-depth, detailed and formalized information about JavaScript. It
defines the language.

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.

A new specification version is released every year. Between these releases, the latest specification draft is at
https://tc39.es/ecma262/.

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.

Also, if you’re developing for the browser, then there are other specifications covered in the second part of the
tutorial.

Manuals
● MDN (Mozilla) JavaScript Reference is the main manual with examples and other information. It’s great to
get in-depth information about individual language functions, methods etc.

You can find it at https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference.

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 the parseInt function.

Compatibility tables
JavaScript is a developing language, new features get added regularly.

To see their support among browser-based and other engines, see:

● https://caniuse.com – per-feature tables of support, e.g. to see which engines support modern cryptography
functions: https://caniuse.com/#feat=cryptography.
● https://kangax.github.io/compat-table – a table with language features and engines that support those or don’t
support.

https://javascript.info/manuals-specifications 1/2
3/9/25, 11:54 AM Manuals and specifications

All these resources are useful in real-life development, as they contain valuable information about language
details, their support, etc.

Please remember them (or this page) for the cases when you need in-depth information about a particular
feature.

 Previous lesson Next lesson



Share    Tutorial map

 Comments
● If you have suggestions what to improve - please submit a GitHub issue or a pull request instead of
commenting.
● If you can't understand something in the article – please elaborate.
● To insert few words of code, use the <code> tag, for several lines – wrap them in <pre> tag, for
more than 10 lines – use a sandbox (plnkr, jsbin, codepen…)

© 2007—2025 Ilya Kantorabout the projectcontact usterms of usage


privacy policy

https://javascript.info/manuals-specifications 2/2

You might also like