js for 循环(js for循环语句例题及解析)
我们已经看到,while循环有不同变种。本章将介绍另一种流行的循环叫做for循环。
for 循环
for循环是循环最紧凑的形式,并包含有以下三个重要部分组成:
循环初始化计数器的初始值。初始化语句执行循环开始之前。
测试语句,将测试如果给定的条件是真还是假。如果条件为真,那么将执行的循环中给定的代码,否则循环会退出来。
循环语句,可以增加或减少计数器。
可以把所有的三个部分中的一行用分号隔开。
语法
for (initialization; test condition; iteration statement){ Statement(s) to be executed if test condition is true}123复制代码类型:[javascript]
例子:
下面的例子说明一个基本的for循环:
<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>123456789101112复制代码类型:[javascript]
这将产生以下结果,它类似于while循环:
Starting LoopCurrent Count : 0Current Count : 1Current Count : 2Current Count : 3Current Count : 4Current Count : 5Current Count : 6Current Count : 7Current Count : 8Current Count : 9Loop stopped!
除注明外的文章,均为来源:老汤博客,转载请保留本文地址!
原文地址:https://tangjiusheng.cn/it/437.html
原文地址:https://tangjiusheng.cn/it/437.html
大家都在看
- js 获取当前网址url参数等信息方法
- js bind函数用法(bind函数实现原理)
- js json转string中文乱码(Json数组传入后台乱码问题解决)
- js eval函数(eval()函数的作用是什么)
- js json转string(js 数组、对象转json 以及json转 数组、对象)
- js prototype和__proto__都有什么作用(彻底搞懂prototype、__proto__与constructor)
- js URL编码(前端URL编码解码介绍)
- js 自定义函数的三种常用方式
- js for 循环(js for循环语句例题及解析)
- js foreach和map区别(forEach和map方法解析)