mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
11 lines
189 B
JavaScript
11 lines
189 B
JavaScript
try {
|
|
console.log("you should see me");
|
|
foo();
|
|
console.log("not me");
|
|
} catch (e) {
|
|
console.log("catch");
|
|
console.log(e.name);
|
|
} finally {
|
|
console.log("finally");
|
|
}
|