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 a473020 commit 9b59453
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,7 @@ function isValidJSON(text) {

예외를 처리할 `catch` 블록이 없더라도 `try` 블록에서 예외가 발생한다면 `finally` 블록은 실행됩니다. 이러한 경우 `finally` 블록이 실행을 마친 직후 해당 예외가 다시 던져집니다.

이 예시는 finally 블록의 한 가지 사용 사례를 보여줍니다.
이 코드는 파일을 열고 그 파일을 사용하는 구문들을 실행합니다.
그리고 `finally` 블록은 예외가 발생했더라도 파일이 항상 닫히도록 보장합니다.
다음 예제는 finally 블록의 한 가지 사용 사례를 보여줍니다. 이 코드는 파일을 열고 그 파일을 사용하는 구문들을 실행합니다. 그리고 `finally` 블록은 예외가 발생했더라도 파일이 항상 닫히도록 보장합니다.

```js
openMyFile();
Expand Down

0 comments on commit 9b59453

Please sign in to comment.