- Notifications
You must be signed in to change notification settings - Fork9
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
base:master
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,42 +1,42 @@ | ||||||
#Handleidingen en specificaties | ||||||
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. | ||||||
##Specificatie | ||||||
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. | ||||||
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. | ||||||
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/>. | ||||||
Om te lezen over goednieuwe functies, inclusief diegene "bijna standaard" zijn (de zogenaamde "fase 3"),zie de voorstellen op <https://github.com/tc39/proposals>. | ||||||
Ook, als u inontwikkeling bent voor debrowser,dan zijn er andere specificaties behandeld inhet [tweede deel](info:browser-omgeving) van de tutorial. | ||||||
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
| ||||||
##Handleidingen | ||||||
- **MDN (Mozilla) JavaScriptReferentie** iseen handleiding met voorbeelden en andere informatie. Het is geweldig om diepgaande informatie te krijgen over individuele taalfuncties, methoden, enz. | ||||||
Men kan deze vinden op <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference>. | ||||||
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**- 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/>. | ||||||
Ook kunnenwegebruik maken van eeninternetzoekopdracht met zinnen als"RegExp MSDN"of "RegExp MSDN jscript". | ||||||
##Compatibiliteitstabellen | ||||||
JavaScript iseen 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
| ||||||
Om hun ondersteuning te zien onderbrowser-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> -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. | ||||||
Al deze bronnen zijn nuttig inde praktijk, omdat ze waardevolle informatie bevatten over taaldetails, hun ondersteuning, enz. | ||||||
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
|