常用的遍历数组,Map,Set的方法

Posted hyns

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用的遍历数组,Map,Set的方法相关的知识,希望对你有一定的参考价值。

一,for of用法(适用iterable类型的集合即Array,Set,Map)

var a = [‘A‘, ‘B‘, ‘C‘];
var s = new Set([‘A‘, ‘B‘, ‘C‘]);
var m = new Map([[1, ‘x‘], [2, ‘y‘], [3, ‘z‘]]);
for (var x of a) { // 遍历Array
  console.log(x);
}
for (var x of s) { // 遍历Set
  console.log(x);
}
for (var x of m) { // 遍历Map
  console.log(x[0] + ‘=‘ + x[1]);
}

//数组运行结果
 A
 B
 C

//set结构运行结果
 A
 B
 C

//Map结构运行结果

1=x

2=y

3=z

二,使用for in

for in遍历对象输出的是键,这也是数组,Map,Set推荐使用for of的原因

2.1 遍历对象:

技术图片

2.2 遍历数组:

技术图片

 

 三,forEach(Map,Set,Array适用)

a.forEach(function (element, index, array) {
// element: 指向当前元素的值
// index: 指向当前索引
// array: 指向Array对象本身
console.log(element + ‘, index = ‘ + index);
});

 

以上是关于常用的遍历数组,Map,Set的方法的主要内容,如果未能解决你的问题,请参考以下文章

List&Map&Set的操作和遍历

关于List,Set,Map集合的遍历方法

Scala HashMap遍历的方法

ES6新特性总结Set集合Map集合

ES6新特性总结Set集合Map集合

List,Set,Map集合的遍历方法