JavaScript Throw statement throws exception instance

Source: Internet
Author: User

The purpose of the throw declaration is to create a exception (exception). You can use this declaration in conjunction with the Try...catch declaration to achieve the purpose of controlling the flow of the program and generating accurate error messages.

<script language= "javascript" type= "Text/javascript" >
<!--
Function default requirement parameter is numeric
function sum (a,b) {
A=parseint (a);
B=parseint (b);
Throws an exception object if a or B cannot be converted to a number
if (isNaN (a) | | isNaN (b)) {
throw new error ("Arguments are not numbers");
}
return a+b;
}

try{
The wrong call
var s=sum ("C", "D");
}catch (e) {
Show details of an exception
alert (e.message);
}
-->
</script>

Grammar:
Throw (Exception) exception can be a string, an integer, a logical value, or an object.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.