Description
Maintainer List
For New Translators
Please read this first (click to open)
To translate an article:
- Check that no one else has claimed your article in the checklist below.
- Comment below with the title of the article that you would like to translate, exactly as listed, e.g.
An Introduction to JavaScript
.- Please take only one article at a time.
- Fork this repo, translate the article in your fork and submit a pull request!
- The pull request title should be same as the article, e.g.
An Introduction to JavaScript
(just like comment)
- The pull request title should be same as the article, e.g.
Please be prompt with your translations! If you find that you can't commit any more, let maintainers know so they can assign the page to someone else.
For Maintainers
Click to open
We recommend that a translation has 2 reviews to be merged.
Please let others know what you do, on community boards and chats, invite them to join. Translations become better if more people see them.
Translations are tracked below, like this:
Our helpful bot watches comments and adds the translator nick and PR id, marks completed, when PR is merged. You can read the details at https://javascript.info/translate/bot.
If something doesn't work right, please contact @iliakan.
Team translation
More details about team translation: https://javascript.info/translate/bot.
Only maintainers can check/uncheck items below. If you're not, please write in a comment what you take to translate, the title, exactly as in the list.
The JavaScript language
An introduction
- An Introduction to JavaScript (@HachemiH)
- Manuals and specifications (@HachemiH)
- Code editors (@HachemiH)
- Developer console (@HachemiH)
JavaScript Fundamentals
- Hello, world! (@HachemiH)
- Code structure (@HachemiH)
- The modern mode, "use strict" (@HachemiH)
- Variables (@HachemiH)
- Data types (@HachemiH)
- Interaction: alert, prompt, confirm (@HachemiH)
- Type Conversions (@HachemiH)
- Basic operators, maths (@raphaelchalicarne) Unicode: flag "u" and class \p{...} #207
- Comparisons (@HachemiH)
- Conditional branching: if, '?' (@HachemiH)
- Logical operators (@HachemiH)
- Nullish coalescing operator '??' (@raphaelchalicarne) Nullish coalescing operator '??' #209
- Loops: while and for (@HachemiH)
- The "switch" statement (@HachemiH)
- Functions (@HachemiH)
- Function expressions (@HachemiH)
- Arrow functions, the basics (@Ezechi3l)
- JavaScript specials (@HachemiH)
Code quality
- Debugging in the browser (@HachemiH)
- Coding Style (@HachemiH)
- Comments (@HachemiH)
- Ninja code (@HachemiH)
- Automated testing with Mocha (@HachemiH)
- Polyfills and transpilers (@HachemiH )
Objects: the basics
- Objects (@HachemiH)
- Object references and copying (@Ezechi3l) Object references and copying #259
- Garbage collection (@HachemiH)
- Object methods, "this" (@HachemiH)
- Constructor, operator "new" (@HachemiH)
- Optional chaining '?.' (@LabZDjee) Optional chaining '?.' #208
- Symbol type (@HachemiH)
- Object to primitive conversion (@HachemiH)
Data types
- Methods of primitives (@yatoogamii)
- Numbers (@yatoogamii)
- Strings (@HachemiH)
- Arrays (@rztprog)
- Array methods (@rztprog)
- Iterables (@rztprog)
- Map and Set (@slopesneves) Map and Set : french translation #86
- WeakMap and WeakSet (@HachemiH) Translate WeakMap and WeakSet page in french language #128
- Object.keys, values, entries (@rztprog)
- Destructuring assignment (@HachemiH) Translate Destructuring assignment in french language #19
- Date and time (@yatoogamii) Translate Date and Time into French #52
- JSON methods, toJSON (@rztprog) Translate JSON in french language #25
Advanced working with functions
- Recursion and stack (@rztprog) Translate recursion in french language #37
- Rest parameters and spread syntax (@HachemiH)
- Variable scope, closure (@HachemiH)
- The old "var" (@tiffanymatthe) The old "var" #24
- Global object (@tiffanymatthe) Global object #27
- Function object, NFE (@TevaHenry) Translates "Function object, NFE" into French #32 et Function object, NFE (Tasks) #36
- The "new Function" syntax (@TevaHenry) Translate The "new Function" syntax into French #29
- Scheduling: setTimeout and setInterval (@aderennes ) Traduction de "Scheduling: setTimeout and setInterval" #33
- Decorators and forwarding, call/apply (@TevaHenry) Translate Decorators and forwarding, call/apply into French #43
- Function binding (@benjGam) Translate Functions Binding (EN -> FR) #498
- Arrow functions revisited (@TevaHenry) Translate "Arrow functions revisited" into French #49
Object properties configuration
- Property flags and descriptors (@TevaHenry) Property flags and descriptors #64
- Property getters and setters (@benjGam) Property getters and setters #496
Prototypes, inheritance
- Prototypal inheritance (@TevaHenry) Prototypal inheritance #66
- F.prototype (@TevaHenry) F.prototype #67
- Native prototypes (@TevaHenry) Native prototypes #68
- Prototype methods, objects without proto (@TevaHenry) Prototype methods, objects without proto #69
Classes
- Class basic syntax (@abdouse79) Class #79
- Class inheritance (@TevaHenry) Class inheritance #74
- Static properties and methods (@TevaHenry) Static properties and methods #76
- Private and protected properties and methods (@TevaHenry) Private and protected properties and methods #77
- Extending built-in classes (@TevaHenry) Extending built-in classes #78
- Class checking: "instanceof" (@TevaHenry) Class checking: "instanceof" #80
- Mixins (@TevaHenry) Mixins #82
Error handling
- Error handling, "try...catch" (@TevaHenry) Error handling, "try..catch" #84
- Custom errors, extending Error (@TevaHenry) Custom errors, extending Error #85
Promises, async/await
- Introduction: callbacks (@yatoogamii) Introduction: callbacks #329
- Promise (@Ezechi3l) Promise basics #129
- Promises chaining (@TevaHenry) Promises chaining #102
- Error handling with promises (@xsteacy) Error handling with promises #105
- Promise API (@xsteacy) Promise API #110
- Promisification (@TevaHenry) Promisification #108
- Microtasks (@TevaHenry) Microtasks #109
- Async/await (@yatoogamii) Async/await #337
Generators, advanced iteration
Modules
- Modules, introduction (@yatoogamii) Modules, introduction #106
- Export and Import (@yatoogamii) Export and import #113
- Dynamic imports (@yatoogamii) Dynamic imports #112
Miscellaneous
- Proxy and Reflect (@yatoogamii) Proxy and Reflect #188
- Eval: run a code string (@Aakodal) Eval: run a code string #180
- Currying (@Aakodal) Currying #178
- Reference Type (@Ezechi3l) Reference Type #253
- BigInt (@Aakodal) BigInt #179
- Unicode, String internals (@C2dricLeroy) Unicode, String internals #472
- WeakRef and FinalizationRegistry
Browser: Document, Events, Interfaces
Document
- Browser environment, specs (@Ooggle) Translate of "Browser environment, specs" in french #40
- DOM tree (@HachemiH) DOM tree #157
- Walking the DOM (@HachemiH) Walking the DOM #174
- Searching: getElement*, querySelector* (@jonathangraff) Searching: getElement*, querySelector* #390
- Node properties: type, tag and contents (@HachemiH) Node properties: type, tag and contents #185
- Attributes and properties (@HachemiH) Attributes and properties #183
- Modifying the document (@HachemiH) Modifying the document #186
- Styles and classes (@tiffanymatthe) Styles and classes #176
- Element size and scrolling (@HachemiH) Element size and scrolling #187
- Window sizes and scrolling (@HachemiH) Window sizes and scrolling #189
- Coordinates (@HachemiH) Coordinates #191
Introduction to Events
- Introduction to browser events (@benjGam)
- Bubbling and capturing (@C2dricLeroy)
- Event delegation (@TevaHenry) Event delegation #239
- Browser default actions (@JulianCDC) Browser default actions #195
- Dispatching custom events (@TevaHenry) Dispatching custom events #242
UI Events
- Mouse events (@Denver-sn) Mouse events basics #46
- Moving the mouse: mouseover/out, mouseenter/leave (@solenn-massot) Moving the mouse: mouseover/out, mouseenter/leave #251
- Drag'n'Drop with mouse events (@abdouse79) Drag'n'drop with mouse events #55
- Pointer events (@lephemere) Pointer events #255
- Keyboard: keydown and keyup (@abdouse79) Keyboard Events en fr #65
- Scrolling (@abdouse79) Scrolling #70
Forms, controls
- Form properties and methods (@vincent-clipet)
- Focusing: focus/blur (@JulianCDC) Focusing: focus/blur #193
- Events: change, input, cut, copy, paste (@touredev) Events: change, input, cut, copy, paste #204
- Forms: event and method submit (@TevaHenry) Forms: event and method submit #243
Document and resource loading
- Page: DOMContentLoaded, load, beforeunload, unload (@TevaHenry) Page: DOMContentLoaded, load, beforeunload, unload #245
- Scripts: async, defer (@TevaHenry) Scripts: async, defer #256
- Resource loading: onload and onerror (@TevaHenry)
Miscellaneous
- Mutation observer (@yatoogamii) Mutation observer #192
- Selection and Range (@TevaHenry) Selection and Range #322
- Event loop: microtasks and macrotasks (@nico-m-64) Event loop: microtasks and macrotasks #398
Frames and windows
- Popups and window methods (@solenn-massot) Popups and window methods #244
- Cross-window communication (@solenn-massot) Cross-window communication #250
- The clickjacking attack (@yatoogamii) The clickjacking attack #339
Binary data, files
- ArrayBuffer, binary arrays (@DieuKoukiFactori) ArrayBuffer, binary arrays #205
- TextDecoder and TextEncoder (@yatoogamii) TextDecoder and TextEncoder #238
- Blob (@yatoogamii) Blob #240
- File and FileReader (@yatoogamii) File and FileReader #241
Network requests
- Fetch (@HachemiH) Fetch #134
- FormData (@HachemiH) FormData #135
- Fetch: Download progress (@HachemiH) Fetch: Download progress #138
- Fetch: Abort (@HachemiH) Fetch: Abort #139
- Fetch: Cross-Origin Requests (@HachemiH) Fetch: Cross-Origin Requests #141
- Fetch API (@HachemiH) Fetch API #147
- URL objects (@HachemiH) Translate URL objects page in french language #150
- XMLHttpRequest (@HachemiH) XMLHttpRequest #152
- Resumable file upload (@HachemiH) Resumable file upload #153
- Long polling (@HachemiH) Long polling #154
- WebSocket (@HachemiH) WebSocket #155
- Server Sent Events (@HachemiH) Server Sent Events #156
Storing data in the browser
- Cookies, document.cookie (@benjGam) Cookies, document.cookie #499
- LocalStorage, sessionStorage (@TevaHenry) LocalStorage, sessionStorage #408
- IndexedDB (@TevaHenry) Translate indexedDB #410
Animation
- Bezier curve (@yatoogamii) Bezier curve #338
- CSS-animations (@SteaceP)
- JavaScript animations (@TevaHenry) JavaScript animations #324
Web components
- From the orbital height (@Retroscilo) From the orbital height #227
- Custom elements (@vincent-clipet)
- Shadow DOM (@TevaHenry) Shadow dom #326
- Template element (@TevaHenry) Template element #325
- Shadow DOM slots, composition (@TevaHenry)
- Shadow DOM styling (@benjGam) Translate shadow dom styling (EN -> FR) #497
- Shadow DOM and events (@TevaHenry) Shadow DOM and events #327
Regular expressions
- Patterns and flags (@gabrieltchekemian) Regular Expressions-->Patterns and Flags #28
- Character classes (@raphaelchalicarne) Character classes #206
- Unicode: flag "u" and class \p{...} (@raphaelchalicarne) Unicode: flag "u" and class \p{...} #207
- Anchors: string start ^ and end $ (@Aakodal) Anchors: string start ^ and end $ #197
- Multiline mode of anchors ^ $, flag "m" (@Aakodal) Multiline mode of anchors ^ $, flag "m" #198
- Word boundary: \b (@XyoloJR) Word boundary: \b #274
- Escaping, special characters (@XyoloJR) Escaping, special characters #275
- Sets and ranges [...] (@XyoloJR) Sets and ranges [...] #276
- Quantifiers +, *, ? and {n} (@JulianCDC) Quantifiers +, *, ? and {n} #196
- Greedy and lazy quantifiers (@XyoloJR) Greedy and lazy quantifiers #287
- Capturing groups (@XyoloJR) Capturing groups #358
- Backreferences in pattern: \N and \k<name> @Aakodal Backreferences in pattern: \N and \k #200
- Alternation (OR) | (@JulianCDC) Alternation (OR) | #280
- Lookahead and lookbehind (@TevaHenry) Translate lookahead-lookbehind tasks #411
- Catastrophic backtracking (@TevaHenry) Translate catastrophic backtracking #414
- Sticky flag "y", searching at position (@XyoloJR) Sticky flag "y", searching at position #406
- Methods of RegExp and String (@Waxoussou) Methods of RegExp and String #269