Development JavaScript Tutorial

< html>

Try Catch Example

try {
    window.nonExistentFunction();
    alert("Method completed.");
} catch (exception) {
    alert("An exception occurred.");
} finally {
    alert("End of try…catch test.");
}