entries() 方法

entries() 方法返回一个新的 Array Iterator 对象,该对象包含数组中每个索引的键/值对。

Version >= 6

var letters = ['a','b','c'];

for(const[index,element] of letters.entries()){
  console.log(index,element);
}

结果

0 "a"
1 "b"
2 "c"

注意Internet Explorer 不支持此方法。

部分内容来自 Mohilla Contributors 的 Array.prototype.entries ,根据 CC-by-SA 2.5获得许可