Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Manuals and specifications#3

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
vertonghenb wants to merge1 commit intojavascript-tutorial:master
base:master
Choose a base branch
Loading
fromvertonghenb:patch-2
Open
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions1-js/01-getting-started/2-manuals-specifications/article.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@

#Manuals and specifications
#Handleidingen en specificaties

This book isa *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 iseen *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 indeveloping for thebrowser,then there are other specs covered inthe [second part](info:browser-environment) of the tutorial.
Ook, als u inontwikkeling bent voor debrowser,dan zijn er andere specificaties behandeld inhet [tweede deel](info:browser-omgeving) van de tutorial.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Suggested change
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.
Voor ontwikkelaars van browserscript/-applicaties worden meer daarop gerichte specificaties behandeld in het[tweede deel](info:browser-omgeving) van de tutorial.


##Manuals
##Handleidingen

- **MDN (Mozilla) JavaScriptReference** isa manual with examples and other information. It's great to get in-depth information about individual language functions, methods etc.
- **MDN (Mozilla) JavaScriptReferentie** iseen 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 aninternetsearch instead. Just use "MDN [term]" inthe query,e.g. <https://google.com/search?q=MDN+parseInt>to search for`parseInt`function.
Hoewel het vaak het beste is om eeninternetzoekopdracht te gebruiken. Gebruik gewoon "MDN [term]" inde query,bijvoorbeeld <https://google.com/search?q=MDN+parseInt>om te zoeken naar de`parseInt`functie.


- **MSDN** Microsoftmanual with a lot of information, including JavaScript (often referred to asJScript).If one needs something specific toInternet Explorer,better go there: <http://msdn.microsoft.com/>.
- **MSDN**- Microsofthandleiding met veel informatie, waaronder JavaScript (vaakJScript genoemd).Als men iets specifieks nodig heeft voorInternet Explorer,kan men beter de volgende website gebruiken: <http://msdn.microsoft.com/>.

Also,wecan use aninternetsearch with phrases such as"RegExp MSDN"or "RegExp MSDN jscript".
Ook kunnenwegebruik maken van eeninternetzoekopdracht met zinnen als"RegExp MSDN"of "RegExp MSDN jscript".

##Compatibility tables
##Compatibiliteitstabellen

JavaScript isa developing language, new features get added regularly.
JavaScript iseen ontwikkelende taal, er worden regelmatig nieuwe functies toegevoegd.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Suggested change
JavaScript is eenontwikkelendetaal, er worden regelmatig nieuwe functies toegevoegd.
JavaScript is een taal die voortdurend in ontwikkeling is. Er worden regelmatig nieuwe functies toegevoegd.


To see their support amongbrowser-based and other engines,see:
Om hun ondersteuning te zien onderbrowser-gebaseerde en andere engines,zie:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Suggested change
Omhun ondersteuningte zienonderbrowser-gebaseerde en andere engines, zie:
Om te zienwelk javascriptbrowser- en andere engines momenteel ondersteunen, zie:


- <http://caniuse.com> - per-feature tables of support, e.g. to see whichenginessupport modern cryptography functions: <http://caniuse.com/#feat=cryptography>.
- <https://kangax.github.io/compat-table> -a table with language features andenginesthat support those or don't support.
- <http://caniuse.com> -ondersteuningstabellenper functie, bijvoorbeeld om te zien welkeenginesmoderne cryptografische functies ondersteunen: <http://caniuse.com/#feat=cryptography>.
- <https://kangax.github.io/compat-table> -een tabel met taalfuncties enenginesdie deze wel of niet ondersteunen.

All these resources are useful inreal-life development, as they contain valuable information about language details, their support etc.
Al deze bronnen zijn nuttig inde 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.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Suggested change
Onthoud ze (of deze pagina) voor de gevallen waarin u diepgaande informatie over een bepaalde functie nodighebt.
Onthoud ze (of deze pagina) voor de gevallen waarin u diepgaande informatie over een bepaalde functie nodigheeft.


[8]ページ先頭

©2009-2025 Movatter.jp