Italian Translation Progress
まだ誰も着手していません。
評価
- 難易度
- 2/5
- 見積もり時間
- 1〜3時間
- 初心者へのやさしさ
- 35/100
- issue の種類
- ドキュメント
- 明瞭さ
- おおむね明確
- 活発さ
- 停滞
- 技術スタック
- javascript
調査の方向性
翻訳チェックリストにある未チェックの記事リンクから始め、この issue のコントリビューター向け手順を読んでください。リンクされている翻訳 bot ガイドを使って、担当への立候補とレビューのプロセスを理解してください。完了とは、一覧にある記事を 1 つ fork で翻訳し、記事タイトルを付けた pull request を送信することです。
索引モデルが issue の本文から書いたものです。
説明
Maintainer List
@longo-andrea, @mean2me, @pasor1
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
- Comparisons
- Conditional branching: if, '?'
- Logical operators (@Dorin-David) #181
- Nullish coalescing operator '??' (@matmont)
- Loops: while and for
- The "switch" statement
- Functions
- Function expressions
- Arrow functions, the basics (@pasor1) #162
- JavaScript specials
Code quality
- Debugging in the browser
- Coding Style
- Comments
- Ninja code
- Automated testing with Mocha
- Polyfills and transpilers
Objects: the basics
- Objects
- Object references and copying (@pasor1) #182
- Garbage collection
- Object methods, "this"
- Constructor, operator "new"
- Optional chaining '?.' (@longo-andrea) #187
- Symbol type
- Object to primitive conversion
Data types
- Methods of primitives
- Numbers
- Strings
- Arrays
- Array methods
- Iterables
- Map and Set (@GabrieleRomeo)
- WeakMap and WeakSet (@longo-andrea) #184
- 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 (@pasor1) #194
- Scheduling: setTimeout and setInterval (@Luma1970)
- Decorators and forwarding, call/apply (@pasor1) #204
- Function binding (@pasor1) #229
- Arrow functions revisited (@longo-andrea) #233
Object properties configuration
- Property flags and descriptors (@longo-andrea) #196
- Property getters and setters (@longo-andrea) #199
Prototypes, inheritance
- Prototypal inheritance (@longo-andrea) #207
- F.prototype (@longo-andrea) #208
- Native prototypes (@longo-andrea) #210
- Prototype methods, objects without proto (@longo-andrea) #213
Classes
- Class basic syntax (@Wilkenfeld )
- Class inheritance (@Wilkenfeld )
- Static properties and methods (@longo-andrea) #231
- Private and protected properties and methods (@longo-andrea) #240
- Extending built-in classes (@longo-andrea) #237
- Class checking: "instanceof" (@longo-andrea) #241
- Mixins (@longo-andrea) #242
Error handling
- Error handling, "try...catch"
- Custom errors, extending Error (@longo-andrea) #163
Promises, async/await
- Introduction: callbacks (@rezyx)
- Promise API (@rezyx)
- Promises chaining (@rezyx)
- Error handling with promises (@rezyx)
- Promise API (@rezyx)
- Promisification (@rezyx)
- Microtasks (@rezyx)
- Async/await (@rezyx)
Generators, advanced iteration
- Generators (@mean2me)
- Async iteration and generators (@mean2me)
Modules
- Modules, introduction (@R0adRunn3r) #49
- Export and Import (@longo-andrea) #243
- Dynamic imports (@longo-andrea) #244
Miscellaneous
- Proxy and Reflect (@longo-andrea) #261
- Eval: run a code string (@longo-andrea) #246
- Currying (@longo-andrea) #255
- Reference Type (@longo-andrea) #256
- BigInt (@longo-andrea) #258
- Unicode, String internals
Browser: Document, Events, Interfaces
Document
- Browser environment, specs
- DOM tree
- Walking the DOM (@pasor1) #253
- Searching: getElement*, querySelector* (@Dorin-David) #254
- Node properties: type, tag and contents (@marcellosurdi) #268
- Attributes and properties (@Dorin-David) #267
- Modifying the document (@Dorin-David) #281
- Styles and classes (@marcellosurdi) #270
- Element size and scrolling (@marcellosurdi) #279
- Window sizes and scrolling (@marcellosurdi) #284
- Coordinates (@marcellosurdi) #286
Introduction to Events
- Introduction to browser events (@pierangelomiceli) #183
- Bubbling and capturing (@pierangelomiceli) #198
- Event delegation (@pierangelomiceli) #203
- Browser default actions (@pierangelomiceli) #212
- Dispatching custom events (@pierangelomiceli) #201
UI Events
- Mouse events (@pierangelomiceli) #225
- Moving the mouse: mouseover/out, mouseenter/leave (@pierangelomiceli) #232
- Drag'n'Drop with mouse events (@pierangelomiceli) #252
- Pointer events (@pierangelomiceli) #260
- Keyboard: keydown and keyup (@pierangelomiceli) #265
- Scrolling (@pierangelomiceli) #266
Forms, controls
- Form properties and methods (@pierangelomiceli) #226
- Focusing: focus/blur (@pierangelomiceli) #227
- Events: change, input, cut, copy, paste (@pierangelomiceli) #223
- Forms: event and method submit (@pierangelomiceli) #228
Document and resource loading
- Page: DOMContentLoaded, load, beforeunload, unload (@simoneP93)
- Scripts: async, defer (@simoneP93)
- Resource loading: onload and onerror (@simoneP93)
Miscellaneous
- Mutation observer (@pierangelomiceli)
- Selection and Range (@pierangelomiceli )
- Event loop: microtasks and macrotasks (@pierangelomiceli )
Frames and windows
- Popups and window methods (@longo-andrea) #269
- Cross-window communication (@longo-andrea) #273
- The clickjacking attack (@longo-andrea) #278
Binary data, files
- ArrayBuffer, binary arrays (@longo-andrea) #291
- TextDecoder and TextEncoder (@longo-andrea) #292
- Blob (@longo-andrea) #295
- File and FileReader (@longo-andrea) #296
Network requests
- Fetch
- FormData (@fsciuti)
- Fetch: Download progress (@fsciuti)
- Fetch: Abort (@fsciuti)
- Fetch: Cross-Origin Requests (@fsciuti)
- Fetch API (@pierangelomiceli) #222
- URL objects (@pierangelomiceli) #271
- XMLHttpRequest (@pierangelomiceli) #274
- Resumable file upload (@pierangelomiceli) #275
- Long polling (@pierangelomiceli) #192
- WebSocket (@pierangelomiceli) #129
- Server Sent Events (@pierangelomiceli ) #180
Storing data in the browser
- Cookies, document.cookie (@Automatron76)
- LocalStorage, sessionStorage (@Automatron76)
- IndexedDB (@pierangelomiceli)
Animation
- Bezier curve (@longo-andrea) #283
- CSS-animations (@longo-andrea) #285
- JavaScript animations (@longo-andrea) #287
Web components
- From the orbital height (@pierangelomiceli) #276
- Custom elements (@pierangelomiceli) #277
- Shadow DOM and events (@pierangelomiceli)
- Template element (@pierangelomiceli) #307
- Shadow DOM slots, composition (@pierangelomiceli) #317
- Shadow DOM styling (@pierangelomiceli) #322
- Shadow DOM and events (@pierangelomiceli) #290
Regular expressions
- Patterns and flags (@eadensplace) #43
- Character classes (@eadensplace) #45
- Unicode: flag "u" and class \p{...} (@eadensplace)
- Anchors: string start ^ and end $ (@eadensplace) #48
- Multiline mode of anchors ^ $, flag "m" (@DavideDaSerra )
- Word boundary: \b (@marcellosurdi) #293
- Escaping, special characters (@longo-andrea) #288
- Sets and ranges [...] (@mrkrash)
- Quantifiers +, *, ? and {n} (@DavideDaSerra)
- Greedy and lazy quantifiers (@marcellosurdi) #318
- Capturing groups (@marcellosurdi) #320
- Backreferences in pattern: \N and \k<name> (@marcellosurdi) #321
- Alternation (OR) | (@marcellosurdi) #323
- Lookahead and lookbehind (@marcellosurdi) #324
- Catastrophic backtracking (@antonio-f) #423
- Sticky flag "y", searching at position (@mrkrash)
- Methods of RegExp and String (@sen6pupi3)
- 主要言語
- HTML
- スター
- 94
- フォーク
- 58
- PR マージ指標
- 30日以内にマージされた PR はありません
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
javascript-tutorial/it.javascript.info のほかの issue
-
難易度 1/5 1時間未満 初心者へのやさしさ 72/100
javascript-tutorial/it.javascript.info#515 · コメント 1 件 ·
-
難易度 1/5 1時間未満 初心者へのやさしさ 45/100
javascript-tutorial/it.javascript.info#448 · コメント 1 件 ·
-
Errore di traduzione オープン
難易度 1/5 1時間未満 初心者へのやさしさ 35/100
javascript-tutorial/it.javascript.info#440 · コメント 1 件 ·
-
good first issue help wanted
難易度 4/5 3〜5日 初心者へのやさしさ 35/100
-
Glossario オープン
難易度 2/5 1〜3時間 初心者へのやさしさ 35/100
javascript-tutorial/it.javascript.info#167 · コメント 11 件 ·
javascript-tutorial/it.javascript.info の issue をすべて見る
似ている issue
-
Add: hunch オープン
難易度 2/5 1〜3時間 初心者へのやさしさ 74/100
AbdelStark/awesome-typesafe#104 ·
-
難易度 2/5 1〜3時間 初心者へのやさしさ 65/100
-
A11y ♿️
難易度 2/5 1〜3時間 初心者へのやさしさ 72/100
-
Link Checker Report オープンautomated issue report
難易度 2/5 1〜3時間 初心者へのやさしさ 85/100
-
documentation improve or update documentation priority/low triage
難易度 2/5 半日 初心者へのやさしさ 86/100
warpdotdev/docs#782 · コメント 1 件 ·