ES6 for...of循环

Posted mengfangui

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6 for...of循环相关的知识,希望对你有一定的参考价值。

1、for of

const arr = [‘red‘, ‘green‘, ‘blue‘];

for(let v of arr) {
  console.log(v); // red green blue
}

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
});

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...in循环读取键名,for...of循环读取键值。如果要通过for...of循环,获取数组的索引,可以借助数组实例的entries方法和keys方法.

 

以上是关于ES6 for...of循环的主要内容,如果未能解决你的问题,请参考以下文章

ES6 for...of循环

es6 for of怎么获取index

ES6—— iterator和for-of循环

es6笔记 Iterator 和 for...of循环

es6 语法 (iterator和for...of循环)

ES6-Iterator & for...of循环