美文网首页
for of 方法

for of 方法

作者: Rui___ | 来源:发表于2019-11-05 15:19 被阅读0次

    1、ES6添加了for of 方法

    JavaScript 原有的for...in循环,只能获得对象的键名,不能直接获取键值。ES6 提供for...of循环,允许遍历获得键值。

    var arr = ['a', 'b', 'c', 'd'];
    
    for (let a in arr) {
      console.log(a); // 0 1 2 3
    }
    
    for (let a of arr) {
      console.log(a); // a b c d
    }
    

    for...of循环可以代替数组实例的forEach方法。

    const arr = ['red', 'green', 'blue'];
    
    arr.forEach(function (element, index) {
      console.log(element); // red green blue
      console.log(index);   // 0 1 2
    });
    

    相关文章

      网友评论

          本文标题:for of 方法

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