mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 03:15:07 +00:00
9 lines
164 B
JavaScript
9 lines
164 B
JavaScript
try {
|
|
console.log("you should see me");
|
|
foo();
|
|
console.log("not me");
|
|
} catch (e) {
|
|
console.log("catch");
|
|
} finally {
|
|
console.log("finally");
|
|
}
|