function x() { try { return 1; } catch(err) { return 2; } finally { return 3; } } const result = x(); console.log(result);
finally
return
try
catch