美文网首页
数组循环

数组循环

作者: 何心猿意马 | 来源:发表于2018-02-04 22:18 被阅读0次

    for,for in,forEach,for of

    let arr = [1,2,3,4,5]
    
    for(let i=0;i<arr.length;i++){
      console.log(i)
    }
    
    arr.forEach(function(item){
      console.log(item)
    })
    
    for(let key in  arr){
      console.log(key)
    }
    
    for(let val of arr){
      console.log(val)
    }
    // 可以return
    

    相关文章

      网友评论

          本文标题:数组循环

          本文链接:https://www.haomeiwen.com/subject/ryuvzxtx.html