Language Basics JavaScript DHTML





function getMonthName (monthNumber) {
     throw "InvalidMonthNumber"
}
try {
    alert(getMonthName(13))
}
catch (exception) {
    alert("An " + exception + " exception was encountered.  Please contact the program vendor.")
}