1 2 3 4 5 6 7 8 9 10 11
function foo() { try { return 0; } catch (e) { try { return 1; } catch (e) { } } } foo();