欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

while循环遍历数组的方法

程序员文章站 2022-03-04 18:33:22
...
在看jQuery源码时发现了这段代码, 自己试了一下, 简单的记录下来.
var arr = [ 'a', 'b', 'c', 'd' ],
    i = 0;while( arr[i++] ){    
    console.log( arr[i] );
    /*
    输出 b c d undefined
    */
}

代码执行顺序为:
(1)判断while(arr[i])是否存在,若存在,执行 (2) (3)
(2) i++
(3) console.log( arr[i] )

所以, 可以写成 console.log( arr[i-1] )

以上就是while循环遍历数组的方法的详细内容,更多请关注其它相关文章!