常见 JavaScript 手册/While 和 For 循环
外观
While 表达式看起来像这样
while(condition){
codeInCycle
}
这里,如果条件为真,则执行循环内的代码,然后流程继续进行;但如果条件为假,则执行将跳过循环。让我们看一个例子。
n = 2;
nums = [];
while(n < 16){
nums.push(n++);
}
print(nums); //2,3,4,5,6,7,8,9,10,11,12,13,14,15
"For" 循环是 while 的简写形式。
for(exp1;exp2;exp3){
code
}
//Equal for
exp1;
while(exp2){
code;
exp3;
}
让我们重写我们的代码。
for(n=2,nums=[];n<16;n++){
nums.push(n);
}
print(nums); // 2,3,4,5,6,7,8,9,10,11,12,13,14,15