javascript-tutorial / javascript-tutorial/ko.javascript.info

[오번역수정] 사소한 오변역(오타)

Open
#831 0 comments 0 reactions 0 assignees View on GitHub

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

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. 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

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.