Skip to content

Commit

Permalink
Update files/ko/web/javascript/reference/statements/try...catch/index.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hochan222 authored Sep 29, 2024
1 parent 8f6c571 commit a473020
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function isValidJSON(text) {

### finally 블록

`finally` 블록은 `try` 블록과 `catch` 블록(들)이 실행된 후, 그리고 `try...catch...finally` 블록 다음의 구문들이 실행되기 전에 실행되는 구문들을 포함합니다. 제어 흐름은 항상 `finally` 블록으로 진입하며, 다음과 같은 방식 중 하나로 진행될 수 있습니다:
`finally` 블록은 `try` 블록과 `catch` 블록(들)이 실행된 후에 실행할 구문들을 포함하지만, `try...catch...finally` 블록 다음의 구문들보다 먼저 실행됩니다. 제어 흐름은 항상 `finally` 블록으로 진입하며, 다음과 같은 방식 중 하나로 진행될 수 있습니다.

- `try` 블록이 정상적으로 실행을 마치고 (예외가 발생하지 않은 경우)
- `catch` 블록이 정상적으로 실행을 마치고
Expand Down

0 comments on commit a473020

Please sign in to comment.