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>
Edited by spence911
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.