Skip to content

Commit

Permalink
update(JS): web/javascript/reference/statements/try...catch
Browse files Browse the repository at this point in the history
  • Loading branch information
undead404 authored and AdriandeCita committed Nov 9, 2022
1 parent ac2d67c commit 3ca64ac
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ try {
console.error("зовнішній", ex.message);
}

// Вивід:
// Друкує:
// "finally"
// "зовнішній" "йой"
```
Expand All @@ -199,7 +199,7 @@ try {
console.error("зовнішній", ex.message);
}

// Вивід:
// Друкує:
// "внутрішній" "йой"
// "finally"
```
Expand All @@ -220,7 +220,7 @@ try {
console.error("зовнішній", ex.message);
}

// Вивід:
// Друкує:
// "внутрішній" "йой"
// "finally"
// "зовнішній" "йой"
Expand Down Expand Up @@ -249,7 +249,7 @@ try {
}
})();

// Вивід:
// Друкує:
// "внутрішній" "йой"
// "finally"
```
Expand Down

0 comments on commit 3ca64ac

Please sign in to comment.