javascript-tutorial / javascript-tutorial/da.javascript.info
Danish Translation Progress
还没有人认领这个 Issue。
- 主要语言
- HTML
- 星标
- 2
- 派生
- 3
- PR 合并指标
- 30 天内没有已合并 PR
描述
Maintainer List
@SwiftTVV, @lasseb7, @ockley
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
- An Introduction to JavaScript (@ockley)
- Manuals and specifications (@ockley) #7
- Code editors (@ockley) (@ockley) #8
- Developer console (@ockley) #9
JavaScript Fundamentals
- Hello, world! (@ockley) #10
- Code structure (@ockley) #11
- The modern mode, "use strict" (@ockley) #13
- Variables (@ockley) #15
- Data types (@ockley) #16
- Interaction: alert, prompt, confirm (@ockley) #17
- Type Conversions (@ockley) #18
- Basic operators, maths (@ockley)
- Comparisons (@ockley) #208
- Conditional branching: if, '?' (@ockley) #209
- Logical operators (@ockley) #211
- Nullish coalescing operator '??' (@ockley) #212
- Loops: while and for (@ockley) #213
- The "switch" statement (@ockley) #214
- Functions (@ockley) #215
- Function expressions (@ockley) #216
- Arrow functions, the basics (@ockley) #217
- JavaScript specials (@ockley) #218
Code quality
- Debugging in the browser (@ockley) #219
- Coding Style (@ockley) #220
- Comments (@ockley) #221
- Ninja code (@ockley) #222
- Automated testing with Mocha (@ockley) #223
- Polyfills and transpilers (@ockley) #224
Objects: the basics
- Objects (@ockley) #225
- Object references and copying (@ockley) #226
- Garbage collection (@ockley) #227
- Object methods, "this" (@ockley) #228
- Constructor, operator "new" (@ockley) #229
- Optional chaining '?.' (@ockley) #230
- Symbol type (@ockley) #231
- Object to primitive conversion (@ockley) #232
Data types
- Methods of primitives (@ockley) #233
- Numbers (@ockley) #234
- Strings (@ockley) #235
- Arrays (@ockley) #236
- Array methods (@ockley) #237
- Iterables (@ockley) #238
- Map and Set (@ockley) #239
- WeakMap and WeakSet (@ockley) #240
- Object.keys, values, entries (@ockley) #241
- Destructuring assignment (@ockley) #242
- Date and time (@ockley) #243
- JSON methods, toJSON (@ockley) #244
Advanced working with functions
- Recursion and stack (@ockley) #245
- Rest parameters and spread syntax (@ockley) #246
- Variable scope, closure (@ockley) #247
- The old "var" (@ockley) #248
- Global object (@ockley) #249
- Function object, NFE (@ockley) #250 #251
- The "new Function" syntax (@ockley) #253
- Scheduling: setTimeout and setInterval (@ockley) #254
- Decorators and forwarding, call/apply (@ockley) #255
- Function binding (@ockley) #256
- Arrow functions revisited (@ockley) #257
Object properties configuration
- Property flags and descriptors (@ockley) #258
- Property getters and setters (@ockley) #259
Prototypes, inheritance
- Prototypal inheritance (@ockley) #260
- F.prototype (@ockley) #261
- Native prototypes (@ockley) #262
- Prototype methods, objects without proto (@ockley) #264
Classes
- Class basic syntax (@ockley) #265
- Class inheritance (@ockley) #266
- Static properties and methods (@ockley) #267
- Private and protected properties and methods (@ockley) #268
- Extending built-in classes (@ockley) #271
- Class checking: "instanceof" (@ockley) #272
- Mixins (@ockley) #273
Error handling
- Error handling, "try...catch" (@ockley) #274
- Custom errors, extending Error (@ockley) #275
Promises, async/await
- Introduction: callbacks (@ockley) #276
- Promise (@ockley) #277
- Promises chaining (@ockley) #278
- Error handling with promises (@ockley) #279
- Promise API (@ockley) #280
- Promisification (@ockley) #281
- Microtasks (@ockley) #282
- Async/await (@ockley) #283
Generators, advanced iteration
- Generators (@ockley) #284
- Async iteration and generators (@ockley) #285
Modules
- Modules, introduction (@ockley) #286
- Export and Import (@ockley) #287
- Dynamic imports (@ockley) #288
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 (@ockley) #289
- DOM tree (@ockley) #290
- Walking the DOM (@ockley) #291
- Searching: getElement*, querySelector* (@ockley) #292
- Node properties: type, tag and contents (@ockley) #293
- Attributes and properties (@ockley) #294
- Modifying the document (@ockley) #295
- Styles and classes (@ockley) #296
- Element size and scrolling (@ockley) #297
- Window sizes and scrolling (@ockley) #298
- Coordinates (@ockley) #299
Introduction to Events
- Introduction to browser events (@ockley) #300
- Bubbling and capturing (@ockley) #301
- Event delegation (@ockley)
- 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
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
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
贡献指南
这个仓库没有索引到贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从 issue #1 中的检查清单开始,选择一篇尚未勾选且尚未在评论中被认领的文章。打开其链接的文章路径,在 fork 中翻译该文章,并使用文章标题提交 pull request;翻译经过审查并合并后,工作即完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- javascript
- 领域
- documentation, internationalization, localization
- Issue 类型
- 文档
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 冷清
- 描述清晰度
- 基本清楚
- 新手友好度
- 58/100