javascript-tutorial / javascript-tutorial/tr.javascript.info

Turkish Translation Progress

未关闭
#1 66 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
HTML
星标
367
派生
114
PR 合并指标
30 天内没有已合并 PR

描述

## Maintainer List

@sahinyanlik, @aliemir, @bilgedemirkaya

## 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, exactly as listed, 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 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](url) (@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 .

If something doesn't work right, please contact @iliakan.

## Team translation

More details about team translation: .

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

* [X] [An Introduction to JavaScript](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/01-getting-started/1-intro)
* [X] [Manuals and specifications](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/01-getting-started/2-manuals-specifications)
* [X] [Code editors](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/01-getting-started/3-code-editors)
* [X] [Developer console](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/01-getting-started/4-devtools)

### JavaScript Fundamentals

* [X] [Hello, world!](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/01-hello-world)
* [X] [Code structure](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/02-structure)
* [X] [The modern mode, "use strict"](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/03-strict-mode)
* [X] [Variables](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/04-variables)
* [X] [Data types](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/05-types)
* [X] [Interaction: alert, prompt, confirm](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/06-alert-prompt-confirm)
* [X] [Type Conversions](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/07-type-conversions)
* [X] [Basic operators, maths](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/08-operators) (@ogzico)
* [X] [Comparisons](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/09-comparison)
* [X] [Conditional branching: if, '?'](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/10-ifelse) (@ogzico)
* [X] [Logical operators](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/11-logical-operators)
* [ ] [Nullish coalescing operator '??'](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/12-nullish-coalescing-operator) // THIS PART IS MISSING
* [X] [Loops: while and for](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/13-while-for)
* [X] [The "switch" statement](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/14-switch)
* [X] [Functions](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/15-function-basics)
* [X] [Function expressions](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/16-function-expressions)
* [X] [Arrow functions, the basics](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/17-arrow-functions-basics) (@akseyh) #147
* [X] [JavaScript specials](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/02-first-steps/18-javascript-specials)

### Code quality

* [ ] [Debugging in the browser](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/03-code-quality/01-debugging-chrome) (@sezerdogru)
* [X] [Coding Style](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/03-code-quality/02-coding-style)
* [X] [Comments](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/03-code-quality/03-comments)
* [X] [Ninja code](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/03-code-quality/04-ninja-code)
* [ ] [Automated testing with Mocha](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/03-code-quality/05-testing-mocha)
* [ ] [Polyfills and transpilers](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/03-code-quality/06-polyfills)

### Objects: the basics

* [X] [Objects](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/04-object-basics/01-object)
* [ ] [Object references and copying](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/04-object-basics/02-object-copy) // THIS PART IS MISSING
* [X] [Garbage collection](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/04-object-basics/03-garbage-collection)
* [X] [Object methods, "this"](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/04-object-basics/04-object-methods)
* [X] [Constructor, operator "new"](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/04-object-basics/06-constructor-new)
* [ ] [Optional chaining '?.'](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/04-object-basics/07-optional-chaining) // THIS PART IS MISSING
* [X] [Symbol type](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/04-object-basics/08-symbol)
* [X] [Object to primitive conversion](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/04-object-basics/09-object-toprimitive)

### Data types

* [X] [Methods of primitives](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/05-data-types/01-primitives-methods)
* [X] [Numbers](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/05-data-types/02-number)
* [X] [Strings](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/05-data-types/03-string)
* [X] [Arrays](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/05-data-types/04-array)
* [X] [Array methods](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/05-data-types/05-array-methods)
* [X] [Iterables](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/05-data-types/06-iterable)
* [ ] [Map and Set](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/05-data-types/07-map-set) (@cmlcrn17) #92
* [X] [WeakMap and WeakSet](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/05-data-types/08-weakmap-weakset)
* [X] [Object.keys, values, entries](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/05-data-types/09-keys-values-entries)
* [X] [Destructuring assignment](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/05-data-types/10-destructuring-assignment)
* [X] [Date and time](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/05-data-types/11-date)
* [X] [JSON methods, toJSON](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/05-data-types/12-json)

### Advanced working with functions

* [X] [Recursion and stack](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/06-advanced-functions/01-recursion)
* [X] [Rest parameters and spread syntax](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/06-advanced-functions/02-rest-parameters-spread)
* [X] [Variable scope, closure](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/06-advanced-functions/03-closure)
* [X] [The old "var"](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/06-advanced-functions/04-var)
* [X] [Global object](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/06-advanced-functions/05-global-object)
* [X] [Function object, NFE](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/06-advanced-functions/06-function-object)
* [X] [The "new Function" syntax](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/06-advanced-functions/07-new-function)
* [X] [Scheduling: setTimeout and setInterval](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/06-advanced-functions/08-settimeout-setinterval)
* [X] [Decorators and forwarding, call/apply](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/06-advanced-functions/09-call-apply-decorators)
* [X] [Function binding](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/06-advanced-functions/10-bind)
* [X] [Arrow functions revisited](https://github.com/javascript-tutorial/tr.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/tr.javascript.info/blob/master/1-js/07-object-properties/01-property-descriptors)
* [X] [Property getters and setters](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/07-object-properties/02-property-accessors)

### Prototypes, inheritance

* [X] [Prototypal inheritance](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/08-prototypes/01-prototype-inheritance)
* [X] [F.prototype](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/08-prototypes/02-function-prototype)
* [X] [Native prototypes](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/08-prototypes/03-native-prototypes)
* [X] [Prototype methods, objects without __proto__](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/08-prototypes/04-prototype-methods)

### Classes

* [X] [Class basic syntax](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/09-classes/01-class)
* [X] [Class inheritance](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/09-classes/02-class-inheritance)
* [X] [Static properties and methods](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/09-classes/03-static-properties-methods)
* [X] [Private and protected properties and methods](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/09-classes/04-private-protected-properties-methods)
* [X] [Extending built-in classes](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/09-classes/05-extend-natives)
* [X] [Class checking: "instanceof"](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/09-classes/06-instanceof)
* [X] [Mixins](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/09-classes/07-mixins)

### Error handling

* [ ] [Error handling, "try...catch"](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/10-error-handling/1-try-catch) (@utqkaba)
* [X] [Custom errors, extending Error](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/10-error-handling/2-custom-errors)

### Promises, async/await

* [X] [Introduction: callbacks](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/11-async/01-callbacks)
* [X] [Promise](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/11-async/02-promise-basics)
* [X] [Promises chaining](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/11-async/03-promise-chaining)
* [ ] [Error handling with promises](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/11-async/04-promise-error-handling) (@ogzico)
* [ ] [Promise API](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/11-async/05-promise-api) (@berat)
* [X] [Promisification](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/11-async/06-promisify) (@akseyh) #272
* [ ] [Microtasks](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/11-async/07-microtask-queue) (@sezerdogru)
* [ ] [Async/await](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/11-async/08-async-await) (@Mustafaefe)

### Generators, advanced iteration

* [ ] [Generators](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/12-generators-iterators/1-generators)
* [ ] [Async iteration and generators](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/12-generators-iterators/2-async-iterators-generators)

### Modules

* [X] [Modules, introduction](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/13-modules/01-modules-intro)
* [X] [Export and Import](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/13-modules/02-import-export)
* [X] [Dynamic imports](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/13-modules/03-modules-dynamic-imports) (@berat)

### Miscellaneous

* [ ] [Proxy and Reflect](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/99-js-misc/01-proxy) (@polycaman)
* [X] [Eval: run a code string](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/99-js-misc/02-eval) (@yinkar) #305
* [ ] [Currying](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/99-js-misc/03-currying-partials) (@kaanguru)
* [ ] [Reference Type](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/99-js-misc/04-reference-type)
* [ ] [BigInt](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/99-js-misc/05-bigint)
* [ ] [Unicode, String internals](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/99-js-misc/06-unicode)
* [ ] [WeakRef and FinalizationRegistry](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/1-js/99-js-misc/07-weakref-finalizationregistry)

## Browser: Document, Events, Interfaces

### Document

* [X] [Browser environment, specs](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/1-document/01-browser-environment)
* [ ] [DOM tree](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/1-document/02-dom-nodes) (@2eb)
* [X] [Walking the DOM](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/1-document/03-dom-navigation) (@yy34) #183
* [ ] [Searching: getElement*, querySelector*](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/1-document/04-searching-elements-dom)
* [ ] [Node properties: type, tag and contents](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/1-document/05-basic-dom-node-properties)
* [ ] [Attributes and properties](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/1-document/06-dom-attributes-and-properties) (@altankurt)
* [X] [Modifying the document](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/1-document/07-modifying-document)
* [ ] [Styles and classes](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/1-document/08-styles-and-classes)
* [ ] [Element size and scrolling](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/1-document/09-size-and-scroll)
* [ ] [Window sizes and scrolling](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/1-document/10-size-and-scroll-window)
* [ ] [Coordinates](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/1-document/11-coordinates)

### Introduction to Events

* [ ] [Introduction to browser events](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/2-events/01-introduction-browser-events) (@umitishere)
* [ ] [Bubbling and capturing](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/2-events/02-bubbling-and-capturing) (@M-Burak-Yilmazer)
* [ ] [Event delegation](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/2-events/03-event-delegation)
* [ ] [Browser default actions](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/2-events/04-default-browser-action)
* [ ] [Dispatching custom events](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/2-events/05-dispatch-events)

### UI Events

* [X] [Mouse events](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/3-event-details/1-mouse-events-basics) (@bilgedemirkaya) #164
* [X] [Moving the mouse: mouseover/out, mouseenter/leave](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave) (@bilgedemirkaya) #166
* [X] [Drag'n'Drop with mouse events](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/3-event-details/4-mouse-drag-and-drop) (@bilgedemirkaya)
* [ ] [Pointer events](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/3-event-details/6-pointer-events) (@kamilklkn)
* [ ] [Keyboard: keydown and keyup](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/3-event-details/7-keyboard-events)
* [ ] [Scrolling](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/3-event-details/8-onscroll) (@barangokcekli) #336

### Forms, controls

* [X] [Form properties and methods](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/4-forms-controls/1-form-elements) (@hmzshin) #353
* [ ] [Focusing: focus/blur](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/4-forms-controls/2-focus-blur)
* [X] [Events: change, input, cut, copy, paste](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/4-forms-controls/3-events-change-input) (@yy34) #167
* [ ] [Forms: event and method submit](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/4-forms-controls/4-forms-submit)

### Document and resource loading

* [ ] [Page: DOMContentLoaded, load, beforeunload, unload](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/5-loading/01-onload-ondomcontentloaded)
* [ ] [Scripts: async, defer](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/5-loading/02-script-async-defer) (@cys27) #356
* [ ] [Resource loading: onload and onerror](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/5-loading/03-onload-onerror)

### Miscellaneous

* [ ] [Mutation observer](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/99-ui-misc/01-mutation-observer)
* [ ] [Selection and Range](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/99-ui-misc/02-selection-range)
* [X] [Event loop: microtasks and macrotasks](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/2-ui/99-ui-misc/03-event-loop) (@unalman) #205

## Frames and windows

* [ ] [Popups and window methods](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/3-frames-and-windows/01-popup-windows)
* [ ] [Cross-window communication](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/3-frames-and-windows/03-cross-window-communication)
* [X] [The clickjacking attack](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/3-frames-and-windows/06-clickjacking) (@Chainedge) #90

## Binary data, files

* [ ] [ArrayBuffer, binary arrays](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/4-binary/01-arraybuffer-binary-arrays)
* [ ] [TextDecoder and TextEncoder](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/4-binary/02-text-decoder)
* [X] [Blob](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/4-binary/03-blob) (@yinkar) #349
* [ ] [File and FileReader](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/4-binary/04-file)

## Network requests

* [X] [Fetch](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/5-network/01-fetch) (@eyupfidan) #348
* [ ] [FormData](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/5-network/02-formdata)
* [ ] [Fetch: Download progress](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/5-network/03-fetch-progress)
* [ ] [Fetch: Abort](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/5-network/04-fetch-abort)
* [ ] [Fetch: Cross-Origin Requests](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/5-network/05-fetch-crossorigin)
* [ ] [Fetch API](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/5-network/06-fetch-api) (@dilarauluturhan)
* [X] [URL objects](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/5-network/07-url) (@yy34) #162
* [ ] [XMLHttpRequest](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/5-network/08-xmlhttprequest)
* [ ] [Resumable file upload](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/5-network/09-resume-upload)
* [ ] [Long polling](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/5-network/10-long-polling)
* [ ] [WebSocket](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/5-network/11-websocket)
* [ ] [Server Sent Events](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/5-network/12-server-sent-events)

## Storing data in the browser

* [ ] [Cookies, document.cookie](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/6-data-storage/01-cookie) (@hknfrt)
* [ ] [LocalStorage, sessionStorage](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/6-data-storage/02-localstorage) (@utqkaba)
* [ ] [IndexedDB](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/6-data-storage/03-indexeddb)

## Animation

* [ ] [Bezier curve](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/7-animation/1-bezier-curve) (@cys27)
* [X] [CSS-animations](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/7-animation/2-css-animations) (@InanBerkin) #139
* [ ] [JavaScript animations](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/7-animation/3-js-animation)

## Web components

* [X] [From the orbital height](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/8-web-components/1-webcomponents-intro) (@yinkar) #225
* [ ] [Custom elements](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/8-web-components/2-custom-elements)
* [ ] [Shadow DOM](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/8-web-components/3-shadow-dom)
* [ ] [Template element](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/8-web-components/4-template-element)
* [ ] [Shadow DOM slots, composition](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/8-web-components/5-slots-composition)
* [ ] [Shadow DOM styling](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/8-web-components/6-shadow-dom-style)
* [ ] [Shadow DOM and events](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/8-web-components/7-shadow-dom-events)

## Regular expressions

* [X] [Patterns and flags](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/01-regexp-introduction) (@gmertk) #52
* [X] [Character classes](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/02-regexp-character-classes) (@gmertk) #71
* [ ] [Unicode: flag "u" and class \\p{...}](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/03-regexp-unicode)
* [X] [Anchors: string start ^ and end $](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/04-regexp-anchors) (@mervekrblt) #226
* [ ] [Multiline mode of anchors ^ $, flag "m"](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/05-regexp-multiline-mode)
* [X] [Word boundary: \\b](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/06-regexp-boundary) (@yinkar) #326
* [ ] [Escaping, special characters](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/07-regexp-escaping)
* [ ] [Sets and ranges \[...\]](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/08-regexp-character-sets-and-ranges)
* [X] [Quantifiers +, *, ? and {n}](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/09-regexp-quantifiers) (@cys27) #355
* [ ] [Greedy and lazy quantifiers](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/10-regexp-greedy-and-lazy)
* [ ] [Capturing groups](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/11-regexp-groups)
* [ ] [Backreferences in pattern: \\N and \\k\](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/12-regexp-backreferences)
* [ ] [Alternation (OR) |](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/13-regexp-alternation)
* [ ] [Lookahead and lookbehind](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/14-regexp-lookahead-lookbehind)
* [ ] [Catastrophic backtracking](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/15-regexp-catastrophic-backtracking)
* [ ] [Sticky flag "y", searching at position](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/16-regexp-sticky)
* [ ] [Methods of RegExp and String](https://github.com/javascript-tutorial/tr.javascript.info/blob/master/9-regular-expressions/17-regexp-methods)

贡献指南

这个仓库没有索引到贡献指南

调研方向

从清单中尚未勾选的文章链接开始,例如 1-js/02-first-steps/12-nullish-coalescing-operator 或 1-js/04-object-basics/02-object-copy,并在开始前评论文章的确切标题。在 fork 中翻译选定的文章,并提交一个标题为该文章名称的 pull request;翻译经过审核并合并后,即表示完成。

由索引模型根据 Issue 内容生成。

评估

技术栈
javascript
领域
documentation
Issue 类型
文档
难度
3/5
预计耗时
1-2 天
活跃度
停滞
描述清晰度
基本清楚
新手友好度
35/100

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。