Turkish Translation Progress
まだ誰も着手していません。
評価
- 難易度
- 3/5
- 見積もり時間
- 1〜2日
- 初心者へのやさしさ
- 35/100
- issue の種類
- ドキュメント
- 明瞭さ
- おおむね明確
- 活発さ
- 停滞
- 技術スタック
- javascript
調査の方向性
チェックリスト内の未チェックの記事リンク(1-js/02-first-steps/12-nullish-coalescing-operator や 1-js/04-object-basics/02-object-copy など)から始め、開始する前に記事の正確なタイトルをコメントしてください。選択した記事を fork で翻訳し、その記事名をタイトルにした pull request を送信してください。翻訳がレビューされてマージされると、完了が反映されます。
索引モデルが issue の本文から書いたものです。
説明
Maintainer List
@sahinyanlik, @aliemir, @bilgedemirkaya
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
JavaScript Fundamentals
- Hello, world!
- Code structure
- The modern mode, "use strict"
- Variables
- Data types
- Interaction: alert, prompt, confirm
- Type Conversions
- Basic operators, maths (@ogzico)
- Comparisons
- Conditional branching: if, '?' (@ogzico)
- Logical operators
- Nullish coalescing operator '??' // THIS PART IS MISSING
- Loops: while and for
- The "switch" statement
- Functions
- Function expressions
- Arrow functions, the basics (@akseyh) #147
- JavaScript specials
Code quality
- Debugging in the browser (@sezerdogru)
- Coding Style
- Comments
- Ninja code
- Automated testing with Mocha
- Polyfills and transpilers
Objects: the basics
- Objects
- Object references and copying // THIS PART IS MISSING
- Garbage collection
- Object methods, "this"
- Constructor, operator "new"
- Optional chaining '?.' // THIS PART IS MISSING
- Symbol type
- Object to primitive conversion
Data types
- Methods of primitives
- Numbers
- Strings
- Arrays
- Array methods
- Iterables
- Map and Set (@cmlcrn17) #92
- WeakMap and WeakSet
- Object.keys, values, entries
- Destructuring assignment
- Date and time
- JSON methods, toJSON
Advanced working with functions
- Recursion and stack
- Rest parameters and spread syntax
- Variable scope, closure
- The old "var"
- Global object
- Function object, NFE
- The "new Function" syntax
- Scheduling: setTimeout and setInterval
- Decorators and forwarding, call/apply
- Function binding
- Arrow functions revisited
Object properties configuration
Prototypes, inheritance
Classes
- Class basic syntax
- Class inheritance
- Static properties and methods
- Private and protected properties and methods
- Extending built-in classes
- Class checking: "instanceof"
- Mixins
Error handling
Promises, async/await
- Introduction: callbacks
- Promise
- Promises chaining
- Error handling with promises (@ogzico)
- Promise API (@berat)
- Promisification (@akseyh) #272
- Microtasks (@sezerdogru)
- Async/await (@Mustafaefe)
Generators, advanced iteration
Modules
Miscellaneous
- Proxy and Reflect (@polycaman)
- Eval: run a code string (@yinkar) #305
- Currying (@kaanguru)
- Reference Type
- BigInt
- Unicode, String internals
- WeakRef and FinalizationRegistry
Browser: Document, Events, Interfaces
Document
- Browser environment, specs
- DOM tree (@2eb)
- Walking the DOM (@yy34) #183
- Searching: getElement*, querySelector*
- Node properties: type, tag and contents
- Attributes and properties (@altankurt)
- Modifying the document
- Styles and classes
- Element size and scrolling
- Window sizes and scrolling
- Coordinates
Introduction to Events
- Introduction to browser events (@umitishere)
- Bubbling and capturing (@M-Burak-Yilmazer)
- Event delegation
- Browser default actions
- Dispatching custom events
UI Events
- Mouse events (@bilgedemirkaya) #164
- Moving the mouse: mouseover/out, mouseenter/leave (@bilgedemirkaya) #166
- Drag'n'Drop with mouse events (@bilgedemirkaya)
- Pointer events (@kamilklkn)
- Keyboard: keydown and keyup
- Scrolling (@barangokcekli) #336
Forms, controls
- Form properties and methods (@hmzshin) #353
- Focusing: focus/blur
- Events: change, input, cut, copy, paste (@yy34) #167
- Forms: event and method submit
Document and resource loading
- Page: DOMContentLoaded, load, beforeunload, unload
- Scripts: async, defer (@cys27) #356
- Resource loading: onload and onerror
Miscellaneous
Frames and windows
- Popups and window methods
- Cross-window communication
- The clickjacking attack (@Chainedge) #90
Binary data, files
Network requests
- Fetch (@eyupfidan) #348
- FormData
- Fetch: Download progress
- Fetch: Abort
- Fetch: Cross-Origin Requests
- Fetch API (@dilarauluturhan)
- URL objects (@yy34) #162
- XMLHttpRequest
- Resumable file upload
- Long polling
- WebSocket
- Server Sent Events
Storing data in the browser
- Cookies, document.cookie (@hknfrt)
- LocalStorage, sessionStorage (@utqkaba)
- IndexedDB
Animation
- Bezier curve (@cys27)
- CSS-animations (@InanBerkin) #139
- JavaScript animations
Web components
- From the orbital height (@yinkar) #225
- Custom elements
- Shadow DOM
- Template element
- Shadow DOM slots, composition
- Shadow DOM styling
- Shadow DOM and events
Regular expressions
- Patterns and flags (@gmertk) #52
- Character classes (@gmertk) #71
- Unicode: flag "u" and class \p{...}
- Anchors: string start ^ and end $ (@mervekrblt) #226
- Multiline mode of anchors ^ $, flag "m"
- Word boundary: \b (@yinkar) #326
- Escaping, special characters
- Sets and ranges [...]
- Quantifiers +, *, ? and {n} (@cys27) #355
- 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
- スター
- 367
- フォーク
- 114
- PR マージ指標
- 30日以内にマージされた PR はありません
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
javascript-tutorial/tr.javascript.info のほかの issue
-
Çöplüğe Terk Edilmiş オープン
難易度 5/5 1週間以上 初心者へのやさしさ 15/100
javascript-tutorial/tr.javascript.info#376 · リアクション 1 件 ·
-
難易度 3/5 1〜2日 初心者へのやさしさ 42/100
javascript-tutorial/tr.javascript.info#366 · コメント 1 件 ·
-
Translation issue オープン
難易度 1/5 1時間未満 初心者へのやさしさ 52/100
javascript-tutorial/tr.javascript.info#361 · コメント 1 件 ·
-
難易度 4/5 3〜5日 初心者へのやさしさ 25/100
-
難易度 5/5 1週間以上 初心者へのやさしさ 15/100
javascript-tutorial/tr.javascript.info#178 · コメント 2 件 ·
javascript-tutorial/tr.javascript.info の issue をすべて見る
似ている issue
-
難易度 2/5 1〜3時間 初心者へのやさしさ 75/100
palladius/rails8-app-on-gcp#145 ·
-
NeedsTriage
難易度 1/5 1時間未満 初心者へのやさしさ 90/100
-
error オープン
難易度 1/5 1時間未満 初心者へのやさしさ 85/100
-
難易度 1/5 1時間未満 初心者へのやさしさ 85/100
-
textual definition
難易度 1/5 1時間未満 初心者へのやさしさ 90/100
geneontology/go-ontology#32653 ·