ES6 - 集合 Set 方法 forEach



此函数为每个 Map 条目执行指定的函数。

语法

myMap.forEach(callback[, thisArg])

参数

  • callback − 为每个元素执行的函数。

  • thisArg − 在执行回调函数时用作 this 的值。

返回值

未定义。

示例

function userdetails(values) { 
   console.log(values); 
}  
var mySet = new Set(); 
mySet.add("John"); 
mySet.add("Jane"); 
mySet.forEach(userdetails); 

输出

John 
Jane 
广告