该“为”循环是循环的最紧凑的形式。它包括以下三个重要部分-
该环路初始化我们初始化我们的初始值计数器。初始化语句在循环开始之前执行。
该 测试的语句 ,如果给定的条件是真还是假,这将考验。如果条件为真,则将执行循环内给出的代码,否则控件将退出循环。
您可以在其中增加或减少计数器的迭代语句。
您可以将所有三个部分放在由分号分隔的一行中。
for循环的语法是JavaScript,如下所示,
for(initialization;test condition;iteration statement){ Statement(s)to be executed if test condition is true }
您可以尝试运行以下示例以了解for循环在JavaScript中的工作方式-
<html> <body> <script> var count; document.write("Starting Loop" + "<br />"); for(count = 0; count < 10; count++){ document.write("Current Count : " + count ); document.write("<br/>"); } document.write("循环停止!"); </script> </body> </html>