JS一般使用的迴圈有這幾種
比如想把上次的陣列使用迴圈一一輸出
那就可以使用迴圈來簡化程式碼
例如:
for (var i=0;i<cars.length;i++)
{
document.write(city[i] + "<br>");
}
使用for in循環這個對象var student={name:"alen",age:21,height:175,weight:65};
for (x in student) // 令x為屬性名
{
infor += person[x];
}
當條件都還是符合括號內的情況時都會執行
while (i<10)
{
count += i
i++;
}
它與while的差別在於他會先至少執行一次才會做判斷是否繼續下一次的循環
do
{
count += i
i++;
}
while (i<10);