Jump to content

JavaScript Error Handling - try, catch, finally


spence911

Recommended Posts

Hi guys! I would really appreciate it if somebody could explain to me why in the code below the last line "document.write( "Back to safety." );" will only execute if the catch block is not commented out. In other words, the script below will output "Finally!". But if the catch block is not commented out, the output is "Caught your error:someFunction is not definedFinally!Back to safety."

<head>
    <title>Title Time! Yeah</title>
 
    <script type="text/javascript">
 
 
        try {
 
            // Throw an error so the catch is triggered.
            nonExistentFunction();
 
        } /*catch( error ){
 
            // Catch the error.
            document.write( "Caught your error:", error.message );
 
        } */ finally {
 
            document.write( "Finally!" );
 
        }
 
        // We got past our try/catch.
        document.write( "Back to safety." );
 
 
    </script>
</head>
<body>
</body>
</html>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.