-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Manuals and specifications #3
Open
vertonghenb
wants to merge
1
commit into
javascript-tutorial:master
Choose a base branch
from
vertonghenb:patch-2
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
42 changes: 21 additions & 21 deletions
42
1-js/01-getting-started/2-manuals-specifications/article.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,42 +1,42 @@ | ||||||
|
||||||
# Manuals and specifications | ||||||
# Handleidingen en specificaties | ||||||
|
||||||
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. | ||||||
Dit boek is een *tutorial*. Het is bedoeld om u te helpen de taal geleidelijk aan te leren. Maar als je eenmaal vertrouwd bent met de basis, heb je andere bronnen nodig. | ||||||
|
||||||
## Specification | ||||||
## Specificatie | ||||||
|
||||||
[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. | ||||||
De ECMA-262-specificatie (https://www.ecma-international.org/publications/standards/Ecma-262.htm) bevat de meest diepgaande, gedetailleerde en geformaliseerde informatie over JavaScript. Het definieert de taal. | ||||||
|
||||||
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. | ||||||
Maar omdat het zo geformaliseerd is, is het in eerste instantie moeilijk te begrijpen. Dus als u de meest betrouwbare bron van informatie over de taaldetails nodig hebt, is de specificatie de juiste plaats. Maar het is niet voor dagelijks gebruik. | ||||||
|
||||||
A new specification version is released every year. In-between these releases, the latest specification draft is at <https://tc39.es/ecma262/>. | ||||||
Elk jaar komt er een nieuwe versie van de specificatie uit. Tussen deze releases door staat de laatste specificatie draft op <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>. | ||||||
Om te lezen over goednieuwe functies, inclusief diegene "bijna standaard" zijn (de zogenaamde "fase 3"), zie de voorstellen op <https://github.com/tc39/proposals>. | ||||||
|
||||||
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. | ||||||
Ook, als u in ontwikkeling bent voor de browser, dan zijn er andere specificaties behandeld in het [tweede deel](info:browser-omgeving) van de tutorial. | ||||||
|
||||||
## Manuals | ||||||
## Handleidingen | ||||||
|
||||||
- **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. | ||||||
- **MDN (Mozilla) JavaScript Referentie** is een handleiding met voorbeelden en andere informatie. Het is geweldig om diepgaande informatie te krijgen over individuele taalfuncties, methoden, enz. | ||||||
|
||||||
One can find it at <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference>. | ||||||
Men kan deze vinden op <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 `parseInt` function. | ||||||
Hoewel het vaak het beste is om een internet zoekopdracht te gebruiken. Gebruik gewoon "MDN [term]" in de query, bijvoorbeeld <https://google.com/search?q=MDN+parseInt> om te zoeken naar de `parseInt` functie. | ||||||
|
||||||
|
||||||
- **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/>. | ||||||
- **MSDN** - Microsoft handleiding met veel informatie, waaronder JavaScript (vaak JScript genoemd). Als men iets specifieks nodig heeft voor Internet Explorer, kan men beter de volgende website gebruiken: <http://msdn.microsoft.com/>. | ||||||
|
||||||
Also, we can use an internet search with phrases such as "RegExp MSDN" or "RegExp MSDN jscript". | ||||||
Ook kunnen we gebruik maken van een internet zoekopdracht met zinnen als "RegExp MSDN" of "RegExp MSDN jscript". | ||||||
|
||||||
## Compatibility tables | ||||||
## Compatibiliteitstabellen | ||||||
|
||||||
JavaScript is a developing language, new features get added regularly. | ||||||
JavaScript is een ontwikkelende taal, er worden regelmatig nieuwe functies toegevoegd. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
To see their support among browser-based and other engines, see: | ||||||
Om hun ondersteuning te zien onder browser-gebaseerde en andere engines, zie: | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
- <http://caniuse.com> - per-feature tables of support, e.g. to see which engines support modern cryptography functions: <http://caniuse.com/#feat=cryptography>. | ||||||
- <https://kangax.github.io/compat-table> - a table with language features and engines that support those or don't support. | ||||||
- <http://caniuse.com> - ondersteuningstabellen per functie, bijvoorbeeld om te zien welke engines moderne cryptografische functies ondersteunen: <http://caniuse.com/#feat=cryptography>. | ||||||
- <https://kangax.github.io/compat-table> - een tabel met taalfuncties en engines die deze wel of niet ondersteunen. | ||||||
|
||||||
All these resources are useful in real-life development, as they contain valuable information about language details, their support etc. | ||||||
Al deze bronnen zijn nuttig in de praktijk, omdat ze waardevolle informatie bevatten over taaldetails, hun ondersteuning, enz. | ||||||
|
||||||
Please remember them (or this page) for the cases when you need in-depth information about a particular feature. | ||||||
Onthoud ze (of deze pagina) voor de gevallen waarin u diepgaande informatie over een bepaalde functie nodig hebt. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.