javascript-tutorial / javascript-tutorial/ja.javascript.info
Japanese Translation Progress
還沒有人認領這個 Issue。
- 主要語言
- HTML
- 星號
- 435
- 分支
- 83
- PR 合併指標
- 30 天內沒有已合併 PR
描述
## Maintainer List
@Kenjii
## For New Translators
Please read this first (click to open)
To translate an article:
1. Check that no one else has claimed your article in the checklist below.
2. Comment below with the title of the article that you would like to translate, e.g. `An Introduction to JavaScript`.
- **Please take only one article at a time**.
3. 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)
Please be prompt with your translations! If you find find that you can't commit any more, let the maintainers know so they can assign the page to someone else.
## For Maintainers
Click to open
Please let others know what you do, on community boards and chats, invite them to join. Translations become better if more people see them.
For teams we suggest that an article has 2 reviews to be merged.
Translalions are tracked below, like this:
* [ ] [Home Page](url) (@iliakan) #1
There's a helper bot to track translations, you can read more about it at .
If something doesn't work right, please contact @iliakan.
Only maintainers can check/uncheck items below. If you're not, please write in a comment what you take to translate.
## The JavaScript language
### An introduction
* [X] [An Introduction to JavaScript](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/01-getting-started/1-intro)
* [x] [Manuals and specifications](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/01-getting-started/2-manuals-specifications)
* [X] [Code editors](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/01-getting-started/3-code-editors)
* [X] [Developer console](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/01-getting-started/4-devtools)
### JavaScript Fundamentals
* [X] [Hello, world!](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/01-hello-world)
* [X] [Code structure](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/02-structure)
* [X] [The modern mode, "use strict"](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/03-strict-mode)
* [X] [Variables](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/04-variables)
* [X] [Data types](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/05-types)
* [X] [Type Conversions](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/06-type-conversions)
* [X] [Operators](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/07-operators)
* [X] [Comparisons](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/08-comparison)
* [X] [Interaction: alert, prompt, confirm](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/09-alert-prompt-confirm)
* [X] [Conditional operators: if, '?'](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/10-ifelse)
* [X] [Logical operators](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/11-logical-operators)
* [X] [Loops: while and for](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/12-while-for)
* [X] [The "switch" statement](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/13-switch)
* [X] [Functions](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/14-function-basics)
* [X] [Function expressions and arrows](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/15-function-expressions-arrows)
* [X] [JavaScript specials](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/02-first-steps/16-javascript-specials)
### Code quality
* [X] [Debugging in Chrome](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/03-code-quality/01-debugging-chrome)
* [X] [Coding Style](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/03-code-quality/02-coding-style)
* [X] [Comments](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/03-code-quality/03-comments)
* [X] [Ninja code](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/03-code-quality/04-ninja-code)
* [X] [Automated testing with mocha](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/03-code-quality/05-testing-mocha)
* [X] [Polyfills](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/03-code-quality/06-polyfills)
### Objects: the basics
* [X] [Objects](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/04-object-basics/01-object)
* [X] [Garbage collection](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/04-object-basics/02-garbage-collection)
* [X] [Symbol type](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/04-object-basics/03-symbol)
* [X] [Object methods, "this"](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/04-object-basics/04-object-methods)
* [X] [Object to primitive conversion](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/04-object-basics/05-object-toprimitive)
* [X] [Constructor, operator "new"](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/04-object-basics/06-constructor-new)
### Data types
* [X] [Methods of primitives](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/05-data-types/01-primitives-methods)
* [X] [Numbers](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/05-data-types/02-number)
* [X] [Strings](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/05-data-types/03-string)
* [X] [Arrays](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/05-data-types/04-array)
* [X] [Array methods](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/05-data-types/05-array-methods)
* [X] [Iterables](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/05-data-types/06-iterable)
* [X] [Map, Set, WeakMap and WeakSet](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/05-data-types/07-map-set-weakmap-weakset)
* [X] [Object.keys, values, entries](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/05-data-types/08-keys-values-entries)
* [X] [Destructuring assignment](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/05-data-types/09-destructuring-assignment)
* [X] [Date and time](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/05-data-types/10-date)
* [X] [JSON methods, toJSON](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/05-data-types/11-json)
### Advanced working with functions
* [X] [Recursion and stack](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/06-advanced-functions/01-recursion)
* [X] [Rest parameters and spread operator](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/06-advanced-functions/02-rest-parameters-spread-operator)
* [X] [Closure](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/06-advanced-functions/03-closure)
* [X] [The old "var"](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/06-advanced-functions/04-var)
* [X] [Global object](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/06-advanced-functions/05-global-object)
* [X] [Function object, NFE](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/06-advanced-functions/06-function-object)
* [X] [The "new Function" syntax](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/06-advanced-functions/07-new-function)
* [X] [Scheduling: setTimeout and setInterval](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/06-advanced-functions/08-settimeout-setinterval)
* [X] [Decorators and forwarding, call/apply](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/06-advanced-functions/09-call-apply-decorators)
* [X] [Function binding](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/06-advanced-functions/10-bind)
* [X] [Currying and partials](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/06-advanced-functions/11-currying-partials)
* [X] [Arrow functions revisited](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/06-advanced-functions/12-arrow-functions)
### Object properties configuration
* [X] [Property flags and descriptors](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/07-object-properties/01-property-descriptors)
* [X] [Property getters and setters](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/07-object-properties/02-property-accessors)
### Prototypes, inheritance
* [X] [Prototypal inheritance](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/08-prototypes/01-prototype-inheritance)
* [X] [F.prototype](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/08-prototypes/02-function-prototype)
* [X] [Native prototypes](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/08-prototypes/03-native-prototypes)
* [x] [Prototype methods, objects without __proto__](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/08-prototypes/04-prototype-methods)
### Classes
* [ ] [Class basic syntax](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/09-classes/01-class)
* [X] [Class inheritance](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/09-classes/02-class-inheritance)
* [X] [Static properties and methods](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/09-classes/03-static-properties-methods)
* [X] [Private and protected properties and methods](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/09-classes/04-private-protected-properties-methods)
* [X] [Extending built-in classes](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/09-classes/05-extend-natives)
* [X] [Class checking: "instanceof"](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/09-classes/06-instanceof)
* [X] [Mixins](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/09-classes/07-mixins)
### Error handling
* [X] [Error handling, "try..catch"](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/10-error-handling/1-try-catch)
* [X] [Custom errors, extending Error](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/10-error-handling/2-custom-errors)
### Promises, async/await
* [X] [Introduction: callbacks](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/11-async/01-callbacks)
* [x] [Promise](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/11-async/02-promise-basics)
* [X] [Promises chaining](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/11-async/03-promise-chaining)
* [x] [Error handling with promises](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/11-async/04-promise-error-handling)
* [x] [Promise API](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/11-async/05-promise-api)
* [x] [Promisification](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/11-async/06-promisify)
* [x] [Microtasks](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/11-async/07-microtask-queue)
* [x] [Async/await](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/11-async/08-async-await)
### Generators, advanced iteration
* [X] [Generators](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/12-generators-iterators/1-generators)
* [X] [Async iterators and generators](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/12-generators-iterators/2-async-iterators-generators)
### Modules
* [X] [Modules, introduction](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/13-modules/01-modules-intro)
* [X] [Export and Import](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/13-modules/02-import-export)
* [X] [Dynamic imports](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/13-modules/03-modules-dynamic-imports)
### Miscellaneous
* [x] [Proxy and Reflect](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/99-js-misc/01-proxy)
* [x] [Eval: run a code string](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/1-js/99-js-misc/02-eval)
## Browser: Document, Events, Interfaces
### Document
* [X] [Browser environment, specs](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/1-document/01-browser-environment)
* [X] [DOM tree](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/1-document/02-dom-nodes)
* [X] [Walking the DOM](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/1-document/03-dom-navigation)
* [x] [Searching: getElement*, querySelector*](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/1-document/04-searching-elements-dom)
* [X] [Node properties: type, tag and contents](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/1-document/05-basic-dom-node-properties)
* [X] [Attributes and properties](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/1-document/06-dom-attributes-and-properties)
* [X] [Modifying the document](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/1-document/07-modifying-document)
* [X] [Styles and classes](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/1-document/08-styles-and-classes)
* [X] [Element size and scrolling](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/1-document/09-size-and-scroll)
* [X] [Window sizes and scrolling](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/1-document/10-size-and-scroll-window)
* [X] [Coordinates](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/1-document/11-coordinates)
### Introduction to Events
* [X] [Introduction to browser events](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/2-events/01-introduction-browser-events)
* [X] [Bubbling and capturing](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/2-events/02-bubbling-and-capturing)
* [X] [Event delegation](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/2-events/03-event-delegation)
* [X] [Browser default actions](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/2-events/04-default-browser-action)
* [X] [Dispatching custom events](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/2-events/05-dispatch-events)
### UI Events
* [X] [Mouse events basics](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/3-event-details/1-mouse-events-basics)
* [X] [Moving: mouseover/out, mouseenter/leave](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave)
* [X] [Drag'n'Drop with mouse events](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/3-event-details/4-mouse-drag-and-drop)
* [X] [Keyboard: keydown and keyup](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/3-event-details/5-keyboard-events)
* [X] [Scrolling](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/3-event-details/8-onscroll)
### Forms, controls
* [X] [Form properties and methods](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/4-forms-controls/1-form-elements)
* [X] [Focusing: focus/blur](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/4-forms-controls/2-focus-blur)
* [X] [Events: change, input, cut, copy, paste](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/4-forms-controls/3-events-change-input)
* [x] [Forms: event and method submit](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/4-forms-controls/4-forms-submit)
### Document and resource loading
* [x] [Page: DOMContentLoaded, load, beforeunload, unload](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/5-loading/01-onload-ondomcontentloaded)
* [x] [Scripts: async, defer](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/5-loading/02-script-async-defer)
* [x] [Resource loading: onload and onerror](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/5-loading/03-onload-onerror)
### Miscellaneous
* [X] [Mutation observer](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/99-ui-misc/01-mutation-observer) (@KenjiI )
* [x] [Selection and Range](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/99-ui-misc/02-selection-range) (@KenjiI )
* [x] [Event loop: microtasks and macrotasks](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/2-ui/99-ui-misc/03-event-loop)
## Frames and windows
* [X] [Popups and window methods](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/3-frames-and-windows/01-popup-windows)
* [X] [Cross-window communication](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/3-frames-and-windows/03-cross-window-communication)
* [X] [The clickjacking attack](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/3-frames-and-windows/06-clickjacking)
## Binary data, files
* [X] [ArrayBuffer, binary arrays](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/4-binary/01-arraybuffer-binary-arrays)
* [X] [TextDecoder and TextEncoder](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/4-binary/02-text-decoder)
* [X] [Blob](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/4-binary/03-blob)
* [X] [File and FileReader](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/4-binary/04-file)
## Network requests
* [x] [Fetch](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/5-network/01-fetch)
* [x] [FormData](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/5-network/02-formdata)
* [X] [Fetch: Download progress](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/5-network/03-fetch-progress) (@KenjiI )
* [X] [Fetch: Abort](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/5-network/04-fetch-abort) (@KenjiI )
* [X] [Fetch: Cross-Origin Requests](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/5-network/05-fetch-crossorigin)
* [X] [Fetch API](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/5-network/06-fetch-api)
* [X] [URL objects](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/5-network/07-url)
* [x] [XMLHttpRequest](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/5-network/08-xmlhttprequest)
* [x] [Resumable file upload](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/5-network/09-resume-upload)
* [x] [Long polling](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/5-network/10-long-polling)
* [x] [WebSocket](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/5-network/11-websocket)
* [x] [Server Sent Events](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/5-network/12-server-sent-events)
## Storing data in the browser
* [X] [Cookies, document.cookie](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/6-data-storage/01-cookie)
* [X] [LocalStorage, sessionStorage](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/6-data-storage/02-localstorage)
* [x] [IndexedDB](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/6-data-storage/03-indexeddb)
## Animation
* [X] [Bezier curve](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/7-animation/1-bezier-curve)
* [X] [CSS-animations](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/7-animation/2-css-animations)
* [X] [JavaScript animations](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/7-animation/3-js-animation)
## Web components
* [x] [From the orbital height](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/8-web-components/1-webcomponents-intro)
* [x] [Custom elements](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/8-web-components/2-custom-elements)
* [x] [Shadow DOM](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/8-web-components/3-shadow-dom)
* [x] [Template element](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/8-web-components/4-template-element)
* [x] [Shadow DOM slots, composition](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/8-web-components/5-slots-composition) (@KenjiI )
* [x] [Shadow DOM styling](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/8-web-components/6-shadow-dom-style) (@morita657)
* [x] [Shadow DOM and events](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/8-web-components/7-shadow-dom-events) (@morita657 )
## Regular expressions
* [X] [Patterns and flags](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/01-regexp-introduction)
* [X] [Methods of RegExp and String](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/02-regexp-methods)
* [X] [Character classes](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/03-regexp-character-classes)
* [X] [Escaping, special characters](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/04-regexp-escaping)
* [X] [Sets and ranges [...]](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/05-regexp-character-sets-and-ranges)
* [X] [Quantifiers +, *, ? and {n}](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/07-regexp-quantifiers)
* [X] [Greedy and lazy quantifiers](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/08-regexp-greedy-and-lazy)
* [X] [Capturing groups](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/09-regexp-groups)
* [X] [Backreferences in pattern: \n and \k](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/10-regexp-backreferences)
* [X] [Alternation (OR) |](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/11-regexp-alternation)
* [X] [String start ^ and finish $](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/12-regexp-anchors)
* [X] [Multiline mode, flag "m"](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/13-regexp-multiline-mode)
* [x] [Lookahead and lookbehind](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/14-regexp-lookahead-lookbehind)
* [x] [Infinite backtracking problem](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/15-regexp-infinite-backtracking-problem)
* [X] [Unicode: flag "u"](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/20-regexp-unicode)
* [x] [Unicode character properties \p](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/21-regexp-unicode-properties)
* [x] [Sticky flag "y", searching at position](https://github.com/javascript-tutorial/ja.javascript.info/blob/master/9-regular-expressions/22-regexp-sticky)
貢獻指南
這個儲存庫沒有索引到貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
從翻譯清單中一篇尚未勾選的文章開始,例如 Class basic syntax,並按照 issue 的說明 fork repository,然後翻譯該文章。完成的標準是提交一個標題為文章名稱的 pull request,並發表評論說明你認領了哪篇文章。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- javascript
- 領域
- documentation, localization
- Issue 類型
- 文件
- 難度
- 2/5
- 預估耗時
- 1-3 小時
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100