Skip to content

Commit

Permalink
[ko] Fix Markdown syntax (#14903)
Browse files Browse the repository at this point in the history
* Fix Markdown `throw`

- **`throw`**문은 => **`throw`** 문은 in line 8

* Fix Markdown `continue`

- Add code block highlighting to the `continue` statement at line 8.

* Fix Markdown `for`

- Add code block highlighting to the `for` statement at line 8.

* Fix Markdown `for...in`

-Change "for...in 문" to bold at line 8.

* Fix Markdown `var`

- **`var`**문은 => **`var`** 문은 in line 8

* Fix Markdown `while`

- Add code block highlighting to the `while` statement at line 8.
  • Loading branch information
cobocho authored Aug 8, 2023
1 parent 543c80d commit 3109054
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ slug: Web/JavaScript/Reference/Statements/continue

{{jsSidebar("Statements")}}

**continue** 문은 현재 또는 레이블이 지정된 루프의 현재 반복에서 명령문의 실행을 종료하고 반복문의 처음으로 돌아가여 루프문의 다음 코드를 실행합니다.
**`continue`** 문은 현재 또는 레이블이 지정된 루프의 현재 반복에서 명령문의 실행을 종료하고 반복문의 처음으로 돌아가여 루프문의 다음 코드를 실행합니다.

{{EmbedInteractiveExample("pages/js/statement-continue.html")}}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ slug: Web/JavaScript/Reference/Statements/for...in

{{jsSidebar("Statements")}}

`for...in`문은 상속된 열거 가능한 속성들을 포함하여 객체에서 문자열로 키가 지정된 모든 열거 가능한 속성에 대해 반복합니다. ([Symbol](/ko/docs/Web/JavaScript/Reference/Global_Objects/Symbol)로 키가 지정된 속성은 무시합니다.)
**`for...in`** 상속된 열거 가능한 속성들을 포함하여 객체에서 문자열로 키가 지정된 모든 열거 가능한 속성에 대해 반복합니다. ([Symbol](/ko/docs/Web/JavaScript/Reference/Global_Objects/Symbol)로 키가 지정된 속성은 무시합니다.)

{{EmbedInteractiveExample("pages/js/statement-forin.html")}}

Expand Down
2 changes: 1 addition & 1 deletion files/ko/web/javascript/reference/statements/for/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ slug: Web/JavaScript/Reference/Statements/for

{{jsSidebar("Statements")}}

**for 문**은 괄호로 감싸고 세미콜론으로 구분한 세 개의 선택식과, 반복을 수행할 문(주로 {{jsxref("Statements/block", "블럭문", "", 0)}})으로 이루어져 있습니다.
**`for`**은 괄호로 감싸고 세미콜론으로 구분한 세 개의 선택식과, 반복을 수행할 문(주로 {{jsxref("Statements/block", "블럭문", "", 0)}})으로 이루어져 있습니다.

{{EmbedInteractiveExample("pages/js/statement-for.html")}}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ slug: Web/JavaScript/Reference/Statements/throw

{{jsSidebar("Statements")}}

**`throw`**문은 사용자 정의 예외를 발생(throw)할 수 있습니다. 예외가 발생하면 현재 함수의 실행이 중지되고 (`throw` 이후의
**`throw`** 문은 사용자 정의 예외를 발생(throw)할 수 있습니다. 예외가 발생하면 현재 함수의 실행이 중지되고 (`throw` 이후의
명령문은 실행되지 않습니다.), 제어 흐름은 콜스택의 첫 번째 [`catch`](/ko/docs/Web/JavaScript/Reference/Statements/try...catch)
블록으로 전달됩니다. 호출자 함수 사이에 `catch` 블록이 없으면 프로그램이 종료됩니다.

Expand Down
2 changes: 1 addition & 1 deletion files/ko/web/javascript/reference/statements/var/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ slug: Web/JavaScript/Reference/Statements/var

{{jsSidebar("Statements")}}

**`var`**문은 변수를 선언하고, 선택적으로 초기화할 수 있습니다.
**`var`** 문은 변수를 선언하고, 선택적으로 초기화할 수 있습니다.

{{EmbedInteractiveExample("pages/js/statement-var.html")}}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ slug: Web/JavaScript/Reference/Statements/while

{{jsSidebar("Statements")}}

**while문**은 조건문이 참일 때 실행되는 반복문이다. 조건은 문장안이 실행되기 전에 참, 거짓을 판단한다.
**`while`**은 조건문이 참일 때 실행되는 반복문이다. 조건은 문장안이 실행되기 전에 참, 거짓을 판단한다.

## 문법

Expand Down

0 comments on commit 3109054

Please sign in to comment.