当前位置:  开发笔记 > 编程语言 > 正文

如何在JavaScript中构建循环?

如何解决《如何在JavaScript中构建循环?》经验,为你挑选了1个好方法。

如何在JavaScript中构建循环?



1> georgebrock..:

对于循环

for (i = startValue; i <= endValue; i++) {
    // Before the loop: i is set to startValue
    // After each iteration of the loop: i++ is executed
    // The loop continues as long as i <= endValue is true
}

对于......循环

for (i in things) {
    // If things is an array, i will usually contain the array keys *not advised*
    // If things is an object, i will contain the member names
    // Either way, access values using: things[i]
}

使用for...in循环来迭代数组是不好的做法.它违反了ECMA 262标准,并且当非标准属性或方法添加到Array对象时会导致问题,例如Prototype. (感谢Chase Seibert在评论中指出这一点)

循环

while (myCondition) {
    // The loop will continue until myCondition is false
}


你不应该使用for ...来循环数组.这将导致Prototype出现问题.见http://www.prototypejs.org/api/array
如果使用hasOwnProperty进行检查,可以避免使用for-in循环的问题:if(!things.hasOwnProperty(i)){continue; }
推荐阅读
围脖上的博博_771
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有