javascript-tutorial / javascript-tutorial/ko.javascript.info
[오번역수정] 사소한 오변역(오타)
Nobody has claimed this yet.
- Dominant language
- HTML
- Stars
- 2k
- Forks
- 852
- PR merge metrics
- No merged PRs in 30d
Description
## 원문
ko.javascript.info/1-js/02-first-steps/18-javascript-specials/
화살표 함수:
// 화살표(=>) 우측엔 표현식이 있음
let sum = (a, b) => a + b;
// **대괄호{ ... }**를 사용하면 본문에 여러 줄의 코드를 작성할 수 있음. return문이 꼭 있어야 함.
let sum = (a, b) => {
// ...
return a + b;
}
## 오타수정
화살표 함수:
// 화살표(=>) 우측엔 표현식이 있음
let sum = (a, b) => a + b;
// **중괄호{ ... }**를 사용하면 본문에 여러 줄의 코드를 작성할 수 있음. return문이 꼭 있어야 함.
let sum = (a, b) => {
// ...
return a + b;
}
## 이슈
## Pull Request(PR)를 통해 수정할 의향이 있습니까?
넹
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Open the Korean tutorial page at ko.javascript.info/1-js/02-first-steps/18-javascript-specials/ and find the arrow-function section. Check the wording around the code example, where 대괄호 is used for a multi-line body, and compare it with the reported correction to 중괄호. Done means the rendered Korean documentation uses the corrected terminology.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript
- Domain
- documentation
- Issue type
- Documentation
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 45/100