标签:write 字符 car rgba com strong oob www 提前
一、循环的适用场景(建议)
二、while遍历数组需要注意:
如果数组中有 0,null,false,undefined 或者空字符串等在 js 中被认为等价于 false 的值,会提前结束遍历。可以通过改成判断数组长度,来避免该问题。
原代码:
while (cars[i]) { document.write(cars[i] + "<br>"); i++; }
更改后:
while (i < cars.length) { document.write(cars[i] + "<br>"); i++; }
本文参考:
https://www.runoob.com/js/js-loop-while.html
JavaScript for/for in/while/do while应用场景
标签:write 字符 car rgba com strong oob www 提前
原文地址:https://www.cnblogs.com/nayitian/p/14965578.html