JavaScript termination functions perform operations _javascript tips

Source: Internet
Author: User

1, if you terminate the return of a function, the example is as follows:
function Testa () {
Alert (' a ');
Alert (' B ');
Alert (' C ');
}
Testa (); Program execution will pop up ' a ', ' B ', ' C ' in turn.

function Testa () {
Alert (' a ');
return ;
Alert (' B ');
Alert (' C ');
}
Testa (); The execution of the program popup ' a ' will terminate.

2, call another function in the function, the call function is terminated while also want to call the function terminated, the instance is as follows:
function Testc () {
Alert (' C ');
Return
Alert (' cc ');
}

function Testd () {
TESTC ();
Alert (' d ');
}
TESTD (); We saw in the TESTD called the TESTC, in the TESTC want to return to the TESTD also terminated, the contrary is only terminated TESTC, the program execution will pop up ' C ', ' d '.

function Testc () {
Alert (' C ');
return false;
Alert (' cc ');
}

Function testd () {
    if (!TESTC ()) return;
    alert (' d ');
}
Testd (), two functions have been modified, TESTC returned in FALSE,TESTD to the TESTC return value, so that the termination of TESTC can also terminate the TESTD, program execution pop-up ' C ' will terminate.

Related Article

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.