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 (@mnismt) An Introduction to JavaScript #30
- Manuals and specifications (@mnismt) Manuals and specifications #36
- Code editors (@mnismt) Code editors #40
- Developer console (@mnismt)
JavaScript Fundamentals
- Hello, world! (@hunghedu) Hello, world! #17
- Code structure (@hunghedu) Code structure #18
- The modern mode, "use strict" (@hunghedu) The modern mode, "use strict" #33
- Variables (@hunghedu) Variables #34
- Data types (@hunghedu) Data types #39
- Interaction: alert, prompt, confirm (@henryonsoftware) Interaction: alert, prompt, confirm #73
- Type Conversions (@thiennguyenminh1a)
- Basic operators, maths (@henryonsoftware) Basic operators, maths #75
- Comparisons (@tttam0113)
- Conditional branching: if, '?' (@leduyquang753)
- Logical operators (@thangisme)
- Nullish coalescing operator '??' (@hiimchinh) Nullish coalescing operator '??' #125
- Loops: while and for (@TienPhongDX)
- The "switch" statement (@hiimchinh)
- Functions (@hoangnv170752) Functions #222
- Function expressions (@ducnguyen96) Function expressions #148
- Arrow functions, the basics (@ducnguyen96)
- JavaScript specials (@kungfu321)
Code quality
- Debugging in the browser (@ImVietnam) Debugging in the browser #173
- Coding Style (@ImVietnam) Coding Style #174
- Comments (@dpc4f) Comments #60
- Ninja code (@ImVietnam) Ninja code #175
- Automated testing with Mocha (@ImVietnam) Automated testing with Mocha #176
- Polyfills and transpilers (@ImVietnam) Polyfills and transpilers #177
Objects: the basics
- Objects (@henryonsoftware) Objects #81
- Object references and copying (@ImVietnam) Object references and copying #178
- Garbage collection (@ImVietnam) Garbage collection #179
- Object methods, "this" (@ImVietnam) Object methods, "this" #180
- Constructor, operator "new" (@ImVietnam) Constructor, operator "new" #181
- Optional chaining '?.' (@ImVietnam) Optional chaining '?.' #183
- Symbol type (@ImVietnam) Symbol type #184
- Object to primitive conversion (@ImVietnam) Object to primitive conversion #186
Data types
- Methods of primitives (@trongtai37)
- Numbers (@ImVietnam) Numbers #187
- Strings (@ImVietnam) Strings #188
- Arrays (@ImVietnam) Arrays #189
- Array methods (@ImVietnam) Array methods #190
- Iterables (@ImVietnam) Iterables #191
- Map and Set (@ImVietnam) Map and Set #192
- WeakMap and WeakSet (@ImVietnam) WeakMap and WeakSet #193
- Object.keys, values, entries (@ImVietnam) Object.keys, values, entries #194
- Destructuring assignment (@ImVietnam) Destructuring assignment #195
- Date and time (@ImVietnam) Date and time #196
- JSON methods, toJSON (@ImVietnam) JSON methods, toJSON #197
Advanced working with functions
- Recursion and stack (@ImVietnam) Recursion and stack #199
- Rest parameters and spread syntax (@ImVietnam) Rest parameters and spread syntax #200
- Variable scope, closure (@ImVietnam) Variable scope, closure #204
- The old "var"
- Global object (@orientdang)
- Function object, NFE (@ImVietnam) Function object, NFE #205
- The "new Function" syntax (@ImVietnam) The "new Function" syntax #206
- Scheduling: setTimeout and setInterval (@ImVietnam) Scheduling: setTimeout and setInterval #207
- Decorators and forwarding, call/apply (@ImVietnam) Decorators and forwarding, call/apply #208
- Function binding (@hunghedu) Function binding #19
- Arrow functions revisited
Object properties configuration
Prototypes, inheritance
- Prototypal inheritance (@hunghedu) Prototypal inheritance #11
- F.prototype (@hunghedu) F.prototype #12
- Native prototypes (@hunghedu) Native prototypes #14
- Prototype methods, objects without proto (@hunghedu) Prototype methods, objects without __proto__ #16
Classes
- Class basic syntax (@hunghedu) Class basic syntax #23
- Class inheritance (@hunghedu) Class inheritance #25
- Static properties and methods (@hunghedu) Static properties and methods #27
- Private and protected properties and methods (@hunghedu) Private and protected properties and methods #28
- Extending built-in classes (@ImVietnam) Extending built-in classes #209
- Class checking: "instanceof" (@ImVietnam) Class checking: "instanceof" #210
- Mixins (@ImVietnam) Mixins #217
Error handling
- Error handling, "try...catch" (@khachoangpt) Error handling, "try...catch" #202
- Custom errors, extending Error (@khachoangpt)
Promises, async/await
- Introduction: callbacks (@quocthangit247) Introduction: callbacks #76
- Promise (@felix-le) Promise #221
- Promises chaining
- Error handling with promises
- Promise API (@hoangnv170752)
- Promisification
- Microtasks
- Async/await
Generators, advanced iteration
Modules
- Modules, introduction (@MinhNguyenElca)
- Export and Import
- Dynamic imports
Miscellaneous
- Proxy and Reflect
- Eval: run a code string
- Currying
- Reference Type
- BigInt (@ducdongmg) BigInt #220
- Unicode, String internals (@ImVietnam) Unicode, String internals #216
- WeakRef and FinalizationRegistry
Browser: Document, Events, Interfaces
Document
- Browser environment, specs (@hoangnv170752) Browser environment, specs #223
- DOM tree
- Walking the DOM
- Searching: getElement*, querySelector*
- Node properties: type, tag and contents
- Attributes and properties
- Modifying the document
- Styles and classes
- Element size and scrolling
- Window sizes and scrolling
- Coordinates
Introduction to Events
- Introduction to browser events
- Bubbling and capturing
- Event delegation
- Browser default actions
- Dispatching custom events
UI Events
- Mouse events
- Moving the mouse: mouseover/out, mouseenter/leave
- Drag'n'Drop with mouse events
- Pointer events
- Keyboard: keydown and keyup
- Scrolling
Forms, controls
- Form properties and methods
- Focusing: focus/blur
- Events: change, input, cut, copy, paste
- Forms: event and method submit
Document and resource loading
- Page: DOMContentLoaded, load, beforeunload, unload
- Scripts: async, defer
- Resource loading: onload and onerror
Miscellaneous
Frames and windows
Binary data, files
Network requests
- Fetch
- FormData
- Fetch: Download progress
- Fetch: Abort
- Fetch: Cross-Origin Requests
- Fetch API
- URL objects
- XMLHttpRequest
- Resumable file upload
- Long polling
- WebSocket
- Server Sent Events
Storing data in the browser
Animation
Web components
- From the orbital height
- Custom elements
- Shadow DOM
- Template element
- Shadow DOM slots, composition
- Shadow DOM styling
- Shadow DOM and events
Regular expressions
- Patterns and flags
- Character classes (@gatostudy)
- Unicode: flag "u" and class \p{...}
- Anchors: string start ^ and end $
- Multiline mode of anchors ^ $, flag "m"
- Word boundary: \b
- Escaping, special characters
- Sets and ranges [...]
- Quantifiers +, *, ? and {n}
- Greedy and lazy quantifiers
- Capturing groups
- Backreferences in pattern: \N and \k<name>
- Alternation (OR) |
- Lookahead and lookbehind
- Catastrophic backtracking
- Sticky flag "y", searching at position
- Methods of RegExp and String