Home  >  Article  >  Web Front-end  >  What are the two types of jump statements in javascript?

What are the two types of jump statements in javascript?

青灯夜游
青灯夜游Original
2022-01-20 19:20:182563browse

Two jump statements in JavaScript: 1. The break statement is used to exit a loop or exit a switch statement to allow the program to continue executing the code after the loop. The syntax is "break;"; 2. The continue statement is used To exit this loop and start the next loop, the syntax is "continue;".

What are the two types of jump statements in javascript?

The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.

There are two main types of jump statements supported by javaScript:

  • break statement

  • continue Statement

The main difference between the break statement and the continue statement is: break is to completely end the loop, continue is to end the current loop

1. break statement:

The break statement is used to exit a loop or exit a switch statement, allowing the program to continue executing the subsequent code. The break statement is usually used in while, do...while, switch or for statements

Grammar:

break;

Description:

The break statement is usually used in while, do...while.switch or for

Example:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>break语句</title>
    <script type="text/javascript">
        var n = 50;
        var sum=0;
        for(var i=0;i<100;i++)
        {
            if(i==(n+1))
                break;
                sum+=i;
        }
        document.write(sum);
    </script>       
</head>
<body>  
</body>
</html>

The preview effect in the browser is as follows:

What are the two types of jump statements in javascript?

2, continue statement

continue statement and break statement similar. The difference is that the continue statement is used to exit this loop and start the next loop. The break statement exits all loops!
Grammar:

continue;

Description:

Like the break statement, the continue statement can only be used in loops such as white, do...while, for and switch. Example of

in the statement:

<!DOCTYPE html> 
<html>
<head>
    <title></title>
    <script type="text/javascript">
        //创建数组的同时对元素赋值
        var str = " i love javascript ";
        for(var i=0;i<str.length;i++)
        {
            if(str.charAt(i)>= "o")
            {
                continue;
            }
            document.write(str.charAt(i));
        }
    </script>
</head>
<body>
</body>
</html>

will be previewed in the browser as follows:

What are the two types of jump statements in javascript?

[Related recommendations: javascript Study tutorial

The above is the detailed content of What are the two types of jump statements in javascript?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn