ES6 集合 Set 方法 has() Node.js domain 模块 ES6 集合Set values() 和 keys() ES6 集合 Set 方法 has() var mySet = new Set(); mySet.add("Jim"); console.log(mySet.has("Jim")); console.log(mySet.has("Tom")); Node.js domain 模块 ES6 集合Set values() 和 keys()