Persian (Farsi) Translation Progress
還沒有人認領這個 Issue。
評估
- 難度
- 5/5
- 預估耗時
- 一週以上
- 新手友好度
- 35/100
- Issue 類型
- 文件
- 描述清晰度
- 基本清楚
- 活躍度
- 停滯
- 技術堆疊
- javascript
- 領域
- content, documentation
研究方向
從此 issue 中的檢查清單開始,選擇一篇尚未勾選且在留言中無人認領的文章。開啟儲存庫中連結的來源路徑,依照翻譯說明操作,並使用文章標題從 fork 提交 pull request。當波斯語文章完成翻譯、審查並合併後,工作即告完成。
由索引模型根據 Issue 內容生成。
描述
Maintainer List
@mahdyar
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:
- Home Page (@iliakan) #1
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
- Manuals and specifications (@kooshan75)
- Code editors
- Developer console
JavaScript Fundamentals
- Hello, world!
- Code structure
- The modern mode, "use strict"
- Variables
- Data types
- Interaction: alert, prompt, confirm (@mahdyar) #96
- Type Conversions
- Basic operators, maths (@kooshan75) #19
- Comparisons (@emadPoursina) #101
- Conditional branching: if, '?' (@mahdiHash) #143
- Logical operators (@mahdiHash) #100
- Nullish coalescing operator '??' (@hossein13m) #53
- Loops: while and for (@mahdiHash) #103
- The "switch" statement (@newshahn) #61
- Functions (@kooshan75) #22
- Function expressions (@mahdiHash) #105
- Arrow functions, the basics (@newshahn) #59
- JavaScript specials
Code quality
- Debugging in the browser (@mahdyar) #93
- Coding Style (@mahdi-momeni) #72
- Comments (@samanzameni)
- Ninja code (@mrmowji)
- Automated testing with Mocha (@EhsanShahbazii) #250
- Polyfills and transpilers (@newshahn) #104
Objects: the basics
- Objects (@mahdiHash) #118
- Object references and copying (@mahdiHash) #121
- Garbage collection (@mahdiHash) #123
- Object methods, "this" (@mahdiHash) #122
- Constructor, operator "new" (@mahdiHash) #98
- Optional chaining '?.' (@mahdi-momeni) #70
- Symbol type (@mahdiHash) #126
- Object to primitive conversion (@mahdiHash) #177
Data types
- Methods of primitives
- Numbers (@kooshan75) #18
- Strings (@mahdiHash) #128
- Arrays (@mahdiHash) #131
- Array methods (@mahdiHash) #132
- Iterables (@mahdiHash) #133
- Map and Set (@mahdiHash) #135
- WeakMap and WeakSet (@mahdiHash) #136
- Object.keys, values, entries (@mahdiHash) #137
- Destructuring assignment (@mahdiHash) #155
- Date and time (@mahdiHash) #139
- JSON methods, toJSON (@mahdiHash) #141
Advanced working with functions
- Recursion and stack (@mahdiHash) #159
- Rest parameters and spread syntax (@Amirhossein-Veysi) #142
- Variable scope, closure (@mahdiHash) #150
- The old "var" (@mahdiHash) #161
- Global object (@Amirhossein-Veysi) #146
- Function object, NFE (@mahdiHash) #156
- The "new Function" syntax (@erfanyeganegi) #151
- Scheduling: setTimeout and setInterval (@mahdiHash) #157
- Decorators and forwarding, call/apply (@mahdiHash) #163
- Function binding (@mahdiHash) #165
- Arrow functions revisited (@mahdiHash) #166
Object properties configuration
- Property flags and descriptors (@mahdiHash) #168
- Property getters and setters (@mahdiHash) #170
Prototypes, inheritance
- Prototypal inheritance (@mahdiHash) #172
- F.prototype (@Amirhossein-Veysi) #171
- Native prototypes (@mahdiHash) #175
- Prototype methods, objects without proto (@Amirhossein-Veysi) #174
Classes
- Class basic syntax (@Amirhossein-Veysi) #176
- Class inheritance (@mahdiHash) #178
- Static properties and methods (@mahdiHash) #179
- Private and protected properties and methods (@mahdiHash) #182
- Extending built-in classes (@mahdiHash) #184
- Class checking: "instanceof" (@mahdiHash) #186
- Mixins (@mahdiHash) #189
Error handling
- Error handling, "try...catch" (@mahdiHash) #194
- Custom errors, extending Error (@mahdiHash) #199
Promises, async/await
- Introduction: callbacks (@Arash-1999) #80
- Promise (@Beroozam) #197
- Promises chaining (@mahdiHash) #223
- Error handling with promises (@mahdiHash) #224
- Promise API (@mahdiHash)
- Promisification (@samanzameni) #366
- Microtasks (@D0x45) #277
- Async/await (@ARTM2000) #219
Generators, advanced iteration
- Generators (@alivarastepour) #270
- Async iteration and generators (@KhodeAmirreza)
Modules
- Modules, introduction (@emadPoursina) #106
- Export and Import (@mostafa-nematpour) #297
- Dynamic imports (@mostafa-nematpour) #299
Miscellaneous
- Proxy and Reflect (@mostafa-nematpour)
- Eval: run a code string (@AminZibayi) #44
- Currying (@moAlireza) #304
- Reference Type (@nafasebra)
- BigInt (@amirhshahbazi) #120
- Unicode, String internals (@mostafa-nematpour) #269
- WeakRef and FinalizationRegistry
Browser: Document, Events, Interfaces
Document
- Browser environment, specs (@kooshan75)
- DOM tree (@Beroozam) #188
- Walking the DOM
- Searching: getElement*, querySelector* (@shahrzadJavadiKoushesh) #278
- 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 (@erfanyeganegi) #154
- Bubbling and capturing (@erfanyeganegi) #158
- Event delegation (@MHMighani) #319
- Browser default actions (@MHMighani) #318
- Dispatching custom events (@HannaParsa) #283
UI Events
- Mouse events (@erfanyeganegi) #149
- Moving the mouse: mouseover/out, mouseenter/leave (@erfanyeganegi) #152
- Drag'n'Drop with mouse events (@hiradsajde)
- Pointer events
- Keyboard: keydown and keyup (@khosrovafaee)
- Scrolling (@TheVelius) #276
Forms, controls
- Form properties and methods (@shahrzadJavadiKoushesh) #285
- Focusing: focus/blur (@shahrzadJavadiKoushesh) #282
- Events: change, input, cut, copy, paste (@shahrzadJavadiKoushesh) #290
- Forms: event and method submit (@shahrzadJavadiKoushesh) #292
Document and resource loading
- Page: DOMContentLoaded, load, beforeunload, unload
- Scripts: async, defer
- Resource loading: onload and onerror
Miscellaneous
- Mutation observer (@HannaParsa) #288
- Selection and Range
- Event loop: microtasks and macrotasks
Frames and windows
- Popups and window methods (@shahrzadJavadiKoushesh) #294
- Cross-window communication (@shahrzadJavadiKoushesh) #302
- The clickjacking attack (@shahrzadJavadiKoushesh) #308
Binary data, files
- ArrayBuffer, binary arrays (@mehrsa-a) #309
- TextDecoder and TextEncoder (@mehrsa-a) #310
- Blob (@mehrsa-a)
- File and FileReader (@EsmaeilSaleh)
Network requests
- Fetch (@amirroox) #264
- FormData (@Atefeh-Masoumi) #315
- Fetch: Download progress (@mosioc) #434
- Fetch: Abort
- Fetch: Cross-Origin Requests
- Fetch API (@Mahdibaham)
- URL objects (@shahrzadJavadiKoushesh)
- XMLHttpRequest
- Resumable file upload
- Long polling
- WebSocket (@MHMighani) #316
- Server Sent Events
Storing data in the browser
- Cookies, document.cookie (@reza-nikravesh)
- LocalStorage, sessionStorage (@TheVelius)
- IndexedDB
Animation
Web components
- From the orbital height (@HannaParsa) #313
- Custom elements (@shayandrg)
- Shadow DOM
- Template element (@samanzameni) #368
- Shadow DOM slots, composition
- Shadow DOM styling
- Shadow DOM and events
Regular expressions
- Patterns and flags (@EhsanShahbazii)
- Character classes (@EhsanShahbazii) #252
- Unicode: flag "u" and class \p{...} (@EhsanShahbazii) #253
- Anchors: string start ^ and end $ (@EhsanShahbazii)
- Multiline mode of anchors ^ $, flag "m" (@EhsanShahbazii) #259
- Word boundary: \b (@EhsanShahbazii)
- Escaping, special characters (@EhsanShahbazii)
- 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
- 主要語言
- HTML
- 星號
- 225
- 分支
- 104
- PR 合併指標
- 30 天內沒有已合併 PR
貢獻指南
這個儲存庫沒有索引到貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
javascript-tutorial/fa.javascript.info 的其他 Issue
-
به هم ریختگی 未關閉
難度 1/5 1 小時以內 新手友好度 48/100
-
難度 2/5 1-3 小時 新手友好度 35/100
javascript-tutorial/fa.javascript.info#314 · 3 則留言 ·
-
難度 4/5 3-5 天 新手友好度 28/100
javascript-tutorial/fa.javascript.info#226 · 4 則留言 ·
-
難度 1/5 1 小時以內 新手友好度 25/100
javascript-tutorial/fa.javascript.info#185 · 10 則留言 ·
查看 javascript-tutorial/fa.javascript.info 的全部 Issue
相似的 Issue
-
難度 1/5 1 小時以內 新手友好度 85/100
-
難度 1/5 1 小時以內 新手友好度 90/100
-
comp/desktop P3 type/bug
難度 1/5 1 小時以內 新手友好度 90/100
NousResearch/hermes-agent#119856 · 1 則留言 ·
-
難度 1/5 1 小時以內 新手友好度 85/100
-
openclaw-en
難度 1/5 1 小時以內 新手友好度 85/100
duanyytop/agents-radar#3441 ·