JavascriptFor循环语句

JavascriptFor循环语句 首页 / JavaScript入门教程 / JavascriptFor循环语句

" for "循环可以将代码块执行指定的次数。

For 流程图

JavaScript中 for 循环的流程图如下-

For Loop

for 循环的语法是JavaScript,如下所示-

for (initialization; test condition; iteration statement) {
   Statement(s) to be executed if test condition is true
}

请尝试以下示例,以了解 for 循环在JavaScript中的工作方式。

<html>
   <body>      
      <script type = "text/javascript">
         <!--
            var count;
            document.write("Starting Loop" + "<br/>");
         
            for(count = 0; count < 10; count++) {
               document.write("Current Count : " + count );
               document.write("<br/>");
            }         
            document.write("Loop stopped!");
         //-->
      </script>      
      <p>Set the variable to different value and then try...</p>
   </body>
</html>

运行上面代码输出

Starting Loop
Current Count : 0
Current Count : 1
Current Count : 2
Current Count : 3
Current Count : 4
Current Count : 5
Current Count : 6
Current Count : 7
Current Count : 8
Current Count : 9
Loop stopped! 
Set the variable to different value and then try...

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

教程推荐

徐昊 · TDD项目实战70讲 -〔徐昊〕

超级访谈:对话张雪峰 -〔张雪峰〕

说透区块链 -〔自游〕

程序员的个人财富课 -〔王喆〕

技术管理案例课 -〔许健〕

软件设计之美 -〔郑晔〕

安全攻防技能30讲 -〔何为舟〕

编译原理之美 -〔宫文学〕

AI技术内参 -〔洪亮劼〕

好记忆不如烂笔头。留下您的足迹吧 :)