- Loading...
...
(function(){ try { return; } catch(e) { print("Caught " + e); } finally { print("Finally"); throw "finally-thrown"; }})();
It prints:
FinallyCaught finally-thrown
Finally
test.js:8:8 finally-thrown
...