Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>test</title>
</head>
<body>
    <p>測試帶有break的loop</p>
    <button onclick="myF()">點擊</button>
    <p id="demo"></p>
    </br>
    
    <p>測試帶有continue的loop</p>
    <button onclick="myF2()">點擊</button>
    <p id="demo2"></p>
    <script type="text/javascript">
        
    </script>
</body>
</html>
 
        let x= "";
        function myF(){
            for (var i = 0; i <= 10; i++) {
                if (i==3) {
                    break;
                }
                x = x + "數字為" + i +"</br>"
            }
            document.getElementById('demo').innerHTML = x;
        }
        let y="";
        function myF2(){
            for (var i = 0; i <= 10; i++) {
                if (i == 3) {
                    continue;
                }
                y = y + "數字為" + i +"</br>"
            }
            document.getElementById('demo2').innerHTML = y;
        }
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
BruceeeYangpro
0viewers