JavaScript for/for in/while/do while应用场景
2021-09-06 22:12
阅读:627
标签:write 字符 car rgba com strong oob www 提前 一、循环的适用场景(建议) for : 比较适合遍历数组,字符串等等。 for in : 比较适合遍历对象,遍历对象时使用这个再合适不过。 while : while 与 for 的使用场景差不多。 do while : 至少执行一边的循环,遍历数组和字符串也很方便。 二、while遍历数组需要注意: 如果数组中有 0,null,false,undefined 或者空字符串等在 js 中被认为等价于 false 的值,会提前结束遍历。可以通过改成判断数组长度,来避免该问题。 原代码: while (cars[i]) { document.write(cars[i] + ""); i++; } 更改后: while (i
上一篇:WPF动画2
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:JavaScript for/for in/while/do while应用场景
文章链接:http://soscw.com/index.php/essay/107646.html
文章标题:JavaScript for/for in/while/do while应用场景
文章链接:http://soscw.com/index.php/essay/107646.html
评论
亲,登录后才可以留言!