Development JavaScript Tutorial

< html>

Try Catch Example

function addTwoNumbers(a, b) {
    throw new Error("Two numbers are required.");
}
try {
    result = addTwoNumbers(90);
} catch (oException) {
    alert(oException.message);
}