Thai Translation Progress
Maintainer List
@EpicHigh
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
- [X] An Introduction to JavaScript (@EpicHigh) #110
- [X] Manuals and specifications (@EpicHigh) #111
- [X] Code editors (@EpicHigh) #113
- [X] Developer console (@EpicHigh) #114
JavaScript Fundamentals
- [X] Hello, world! (@EpicHigh) #116
- [X] Code structure (@EpicHigh) #119
- [X] The modern mode, "use strict" (@EpicHigh) #120
- [X] Variables (@EpicHigh) #138
- [X] Data types (@EpicHigh) #139
- [X] Interaction: alert, prompt, confirm (@EpicHigh) #140
- [X] Type Conversions (@EpicHigh) #141
- [X] Basic operators, maths (@EpicHigh) #142
- [X] Comparisons (@EpicHigh) #143
- [X] Conditional branching: if, '?' (@EpicHigh) #144
- [X] Logical operators (@EpicHigh) #145
- [X] Nullish coalescing operator '??' (@EpicHigh) #146
- [X] Loops: while and for (@EpicHigh) #147
- [X] The "switch" statement (@EpicHigh) #148
- [X] Functions (@EpicHigh) #149
- [X] Function expressions (@EpicHigh) #150
- [X] Arrow functions, the basics (@EpicHigh) #151
- [X] JavaScript specials (@EpicHigh) #152
Code quality
- [X] Debugging in the browser (@EpicHigh) #153
- [X] Coding Style (@EpicHigh) #154
- [X] Comments (@EpicHigh) #155
- [X] Ninja code (@EpicHigh) #156
- [X] Automated testing with Mocha (@EpicHigh) #157
- [X] Polyfills and transpilers (@EpicHigh) #158
Objects: the basics
- [X] Objects (@koramit) #102
- [X] Object references and copying (@EpicHigh) #159
- [X] Garbage collection (@EpicHigh) #160
- [X] Object methods, "this" (@EpicHigh) #161
- [X] Constructor, operator "new" (@EpicHigh) #162
- [X] Optional chaining '?.' (@EpicHigh) #163
- [X] Symbol type (@EpicHigh) #164
- [X] Object to primitive conversion (@EpicHigh) #165
Data types
- [X] Methods of primitives (@EpicHigh) #166
- [X] Numbers (@EpicHigh) #167
- [x] Strings (@EpicHigh) #169
- [ ] Arrays
- [ ] Array methods
- [ ] Iterables
- [ ] Map and Set
- [ ] WeakMap and WeakSet
- [ ] Object.keys, values, entries
- [ ] Destructuring assignment
- [ ] Date and time
- [ ] JSON methods, toJSON
Advanced working with functions
- [ ] Recursion and stack
- [X] Rest parameters and spread syntax (@PeterWorakarn) #95
- [ ] 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
- [ ] Prototypal inheritance
- [ ] F.prototype
- [ ] Native prototypes
- [ ] Prototype methods, objects without proto
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
- [ ] Promise API
- [ ] Promisification
- [ ] Microtasks
- [ ] Async/await
Generators, advanced iteration
Modules
- [ ] Modules, introduction
- [ ] Export and Import
- [ ] Dynamic imports
Miscellaneous
- [ ] Proxy and Reflect
- [ ] Eval: run a code string
- [ ] Currying
- [ ] Reference Type
- [ ] BigInt
- [ ] Unicode, String internals
- [ ] WeakRef and FinalizationRegistry
Browser: Document, Events, Interfaces
Document
- [ ] Browser environment, specs
- [ ] DOM tree
- [ ] Walking the DOM
- [ ] Searching: getElement*, querySelector*
- [ ] 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 (@soap)
- [ ] Bubbling and capturing
- [ ] Event delegation
- [ ] Browser default actions
- [ ] Dispatching custom events
UI Events
- [ ] Mouse events
- [ ] Moving the mouse: mouseover/out, mouseenter/leave
- [ ] Drag'n'Drop with mouse events
- [ ] Pointer events
- [ ] Keyboard: keydown and keyup
- [ ] Scrolling
Forms, controls
- [ ] Form properties and methods
- [ ] Focusing: focus/blur
- [ ] Events: change, input, cut, copy, paste
- [ ] Forms: event and method submit
Document and resource loading
- [ ] Page: DOMContentLoaded, load, beforeunload, unload
- [ ] Scripts: async, defer
- [ ] Resource loading: onload and onerror
Miscellaneous
Frames and windows
Binary data, files
- [ ] ArrayBuffer, binary arrays
- [ ] TextDecoder and TextEncoder
- [ ] Blob
- [ ] File and FileReader
Network requests
- [ ] Fetch
- [ ] FormData
- [ ] Fetch: Download progress
- [ ] Fetch: Abort
- [ ] Fetch: Cross-Origin Requests
- [ ] Fetch API
- [ ] URL objects
- [ ] XMLHttpRequest
- [ ] Resumable file upload
- [ ] Long polling
- [ ] WebSocket
- [ ] Server Sent Events
Storing data in the browser
Animation
- [ ] Bezier curve
- [ ] CSS-animations
- [ ] JavaScript animations
Web components
- [ ] From the orbital height
- [ ] Custom elements
- [ ] Shadow DOM
- [ ] Template element
- [ ] Shadow DOM slots, composition
- [ ] Shadow DOM styling
- [ ] Shadow DOM and events
Regular expressions
- [ ] Patterns and flags
- [ ] Character classes
- [ ] Unicode: flag "u" and class \p{...}
- [ ] Anchors: string start ^ and end $
- [ ] Multiline mode of anchors ^ $, flag "m"
- [ ] Word boundary: \b
- [ ] Escaping, special characters
- [ ] 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
Comparisons
Comparisons
So, Do you want to translate the Comparisons part? I really appreciate it. You can folk this repo and make begin to translate it. Once you have finished, just create a PR to this original repo.
Rest parameters and spread operator
@PeterWorakarn
Many thanks. I'm so sorry for my slow response. I appreciate it. You can folk this repo and begin to translate it. Once you have finished, create a PR to this original repo. I will preserve these topics for you.
Sorry to say that with my personal reasons, I could not make the translation.
On Mon, Dec 13, 2021 at 3:15 PM Prasit Tongpradit @.***> wrote:
@PeterWorakarn https://github.com/PeterWorakarn
Many thanks. I'm so sorry for my slow response. I appreciate it. You can folk this repo and begin to translate it. Once you have finished, create a PR to this original repo. I will preserve these topics for you.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/javascript-tutorial/th.javascript.info/issues/1#issuecomment-992211901, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGTQKWEOL42LHAC3E4J5L5DUQWTS7ANCNFSM4HN44A5A . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
@vichaidj
That's fine.
Objects
@koramit Thank you, I reserved this topic for you.
Object references and copying
Introduction to browser events
Numbers
Introduction:callback