标签:循环 value nbsp item val 好的 for tor iterator
我想遍历map,用iterator
const map = new Map();
//map.set(1,1);
const iterator = map.keys();
console.log(iterator);
let k;
do {
k = iterator.next();
console.log(k.value);
} while(k.done);
当map有键值对时是好的,但当为空时,死循环
可以换一种遍历方式:
for(let item of map) {
console.log(item);
}
标签:循环 value nbsp item val 好的 for tor iterator
原文地址:http://www.cnblogs.com/gugege/p/7424167.html