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讲 -〔徐昊〕

零基础入门Spark -〔吴磊〕

如何讲好一堂课 -〔薛雨〕

数据分析思维课 -〔郭炜〕

说透数字化转型 -〔付晓岩〕

跟月影学可视化 -〔月影〕

软件设计之美 -〔郑晔〕

微信小程序全栈开发实战 -〔李艺〕

微服务架构实战160讲 -〔杨波〕

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