首页 > 代码库 > es6-for...of循环一个数组返回索引的写法

es6-for...of循环一个数组返回索引的写法


for(let [index,elem] of new Map( arr.map( ( item, i ) => [ i, item ] ) )){
  console.log(index);
  console.log(elem);
}

es6-for...of循环一个数组返回索引的写法