Development JavaScript Tutorial

< html>

Try Catch Example

try {
    eval("a -==-++ b");        //causes error
} catch (oException) {
    alert("An exception occurred.");
} finally {
    alert("All done.");
}