Description
Maintainer List
@raikusy, @mrpmohiburrahman, @shaonkabir8
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 (@hasanuzzamanbe) An Introduction to JavaScript #4
- Manuals and specifications (@sjsakib) Manuals and specifications #2
- Code editors (@jamal-pb95) Code editors #18
- Developer console (@sjsakib) Developer console #10
JavaScript Fundamentals
- Hello, world! (@mdeasindev) Hello, world! #11
- Code structure (@shimulch) Code structure #6
- The modern mode, "use strict" (@sjsakib) The modern mode, "use strict" #12
- Variables (@mirashif)
- Data types (@mijankarim)
- Interaction: alert, prompt, confirm (@shuvo575) Interaction: alert, prompt, confirm #21
- Type Conversions (@AshiqueImran) Type Conversions #9
- Basic operators, maths (@MShafquat) Basic operators, maths #113
- Comparisons (@akib22) Comparisons #25
- Conditional branching: if, '?' (@Showrin)
- Logical operators (@sabbirshawon)
- Nullish coalescing operator '??' (@mrpmohiburrahman) Nullish coalescing operator '??' #102
- Loops: while and for (@dreygur)
- The "switch" statement (@tanvirul6)
- Functions (@lifeoflikhon) Functions #29
- Function expressions (@ahamed)
- Arrow functions, the basics (@ahamed) Arrow functions, the basics #56
- JavaScript specials (@r-shafi)
Code quality
- Debugging in the browser (@yeasinjabed2) Debugging in the browser #274
- Coding Style (@AshiqueImran) Coding Style #30
- Comments (@shathee) Comments #137
- Ninja code (@Hasib192)
- Automated testing with Mocha
- Polyfills and transpilers
Objects: the basics
- Objects (@shimulch) Objects #22
- Object references and copying (@tahnoonn) Object references and copying #92
- Garbage collection (@shimulch) Garbage collection #8
- Object methods, "this" (@sunilksamanta)
- Constructor, operator "new" (@msisaifu) Constructor, operator "new" #230
- Optional chaining '?.' (@KhanShaheb34)
- Symbol type (@msisaifu) Symbol type #231
- Object to primitive conversion (@msisaifu) Object to primitive conversion #234
Data types
- Methods of primitives (@KalyanBhowmick)
- Numbers (@ranamahmud)
- Strings (@kamalahmed)
- Arrays (@msisaifu) Arrays #163
- Array methods (@msisaifu) Array methods #165
- Iterables (@msisaifu) Iterables #206
- Map and Set (@msisaifu) Map and Set #207
- WeakMap and WeakSet (@msisaifu) WeakMap and WeakSet #209
- Object.keys, values, entries (@msisaifu) Object.keys, values, entries #169
- Destructuring assignment (@msisaifu) Destructuring assignment #210
- Date and time (@msisaifu) Date and time #225
- JSON methods, toJSON (@msisaifu) JSON methods, toJSON #229
Advanced working with functions
- Recursion and stack (@yeasinjabed2)
- Rest parameters and spread syntax
- Variable scope, closure
- The old "var" (@lhmisho) The old "var" #28
- Global object (@AbmSourav) Global object #49
- Function object, NFE
- The "new Function" syntax (@msisaifu) The "new Function" syntax #166
- Scheduling: setTimeout and setInterval
- Decorators and forwarding, call/apply
- Function binding (@jaamaal95)
- Arrow functions revisited (@msisaifu) Arrow functions revisited #168
Object properties configuration
- Property flags and descriptors (@msisaifu) Property flags and descriptors #235
- Property getters and setters (@msisaifu) Property getters and setters #237
Prototypes, inheritance
- Prototypal inheritance (@msisaifu) Prototypal inheritance #239
- F.prototype (@msisaifu)
- Native prototypes
- Prototype methods, objects without proto
Classes
- Class basic syntax (@shuvo575)
- Class inheritance (@jabidishtiaque)
- Static properties and methods (@jistiak)
- Private and protected properties and methods
- Extending built-in classes
- Class checking: "instanceof"
- Mixins
Error handling
Promises, async/await
- Introduction: callbacks (@n8fury)
- Promise (@anampartho)
- Promises chaining
- Error handling with promises
- Promise API
- Promisification
- Microtasks
- Async/await
Generators, advanced iteration
- Generators (@msisaifu) Generators #57
- Async iteration and generators (@msisaifu) Async iteration and generators #170
Modules
Miscellaneous
- Proxy and Reflect
- Eval: run a code string (@msisaifu) Eval: run a code string #164
- Currying
- Reference Type
- BigInt
- Unicode, String internals
- WeakRef and FinalizationRegistry
Browser: Document, Events, Interfaces
Document
- Browser environment, specs (@msisaifu) Browser environment, specs #191
- DOM tree (@msisaifu) DOM tree #190
- Walking the DOM (@msisaifu) Walking the DOM #189
- Searching: getElement*, querySelector* (@msisaifu) Searching: getElement*, querySelector* #188
- Node properties: type, tag and contents (@msisaifu) Node properties: type, tag and contents #187
- Attributes and properties (@msisaifu) Attributes and properties #128
- Modifying the document (@msisaifu) Modifying the document #186
- Styles and classes (@msisaifu) Styles and classes #185
- Element size and scrolling (@msisaifu) Element size and scrolling #223
- Window sizes and scrolling (@msisaifu) Window sizes and scrolling #226
- Coordinates (@msisaifu)
Introduction to Events
- Introduction to browser events (@msisaifu) Introduction to browser events #184
- Bubbling and capturing (@msisaifu) Bubbling and capturing #183
- Event delegation (@msisaifu) Event delegation #180
- Browser default actions (@msisaifu) Browser default actions #139
- Dispatching custom events (@msisaifu) Dispatching custom events #179
UI Events
- Mouse events
- Moving the mouse: mouseover/out, mouseenter/leave
- Drag'n'Drop with mouse events
- Pointer events
- Keyboard: keydown and keyup
- Scrolling (@msisaifu) Scrolling #174
Forms, controls
- Form properties and methods (@msisaifu) Form properties and methods #178
- Focusing: focus/blur (@msisaifu) Focusing: focus/blur #175
- Events: change, input, cut, copy, paste (@msisaifu) Events: change, input, cut, copy, paste #177
- Forms: event and method submit (@msisaifu) Forms: event and method submit #176
Document and resource loading
- Page: DOMContentLoaded, load, beforeunload, unload (@msisaifu) Page: DOMContentLoaded, load, beforeunload, unload #173
- Scripts: async, defer (@msisaifu) Scripts: async, defer #172
- Resource loading: onload and onerror (@msisaifu) Resource loading: onload and onerror #171
Miscellaneous
- Mutation observer (@msisaifu) Mutation observer #167
- Selection and Range
- Event loop: microtasks and macrotasks (@msisaifu) Event loop: microtasks and macrotasks #162
Frames and windows
Binary data, files
Network requests
- Fetch (@HafizulHaque)
- FormData (@lhmisho)
- 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 (@msisaifu) Patterns and flags #59
- Character classes (@msisaifu) Character classes #192
- Unicode: flag "u" and class \p{...} (@msisaifu) Unicode: flag "u" and class \p{...} #193
- Anchors: string start ^ and end $ (@msisaifu) Anchors: string start ^ and end $ #194
- Multiline mode of anchors ^ $, flag "m" (@msisaifu) Multiline mode of anchors ^ $, flag "m" #195
- Word boundary: \b (@msisaifu) Word boundary: \b #196
- Escaping, special characters (@msisaifu) Escaping, special characters #197
- Sets and ranges [...] (@msisaifu)
- Quantifiers +, *, ? and {n} (@msisaifu) Quantifiers +, *, ? and {n} #198
- Greedy and lazy quantifiers (@msisaifu) Greedy and lazy quantifiers #199
- Capturing groups (@msisaifu) Capturing groups #109
- Backreferences in pattern: \N and \k<name> (@msisaifu) Backreferences in pattern: \N and \k<name> #205
- Alternation (OR) | (@msisaifu) Alternation (OR) | #204
- Lookahead and lookbehind (@msisaifu) Lookahead and lookbehind #203
- Catastrophic backtracking (@msisaifu) Catastrophic backtracking #202
- Sticky flag "y", searching at position (@msisaifu) Sticky flag "y", searching at position #201
- Methods of RegExp and String (@msisaifu) Methods of RegExp and String #200