36、continue和break退出循环

yu
yu
2024-10-04 / 0 评论 / 2 阅读 / 正在检测是否收录...
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        //打印五句话
        // let i = 1
        // while (i <= 5){
        //     if (i ===3){
        //         break //退出整个循环
        //     }
        //     console.log(`我要吃第${i}包子`)
        //     i++
        // }
        let i = 1
        while (i <= 5){
            if (i ===3){
                i++
                continue //结束本次循环,继续下次循环(i++写在上面)
            }
            console.log(`我要吃第${i}包子`)
            i++
        }
    </script>
</body>
</html>
0

评论 (0)

取消