此函数清除Set中的所有对象。
mySet.clear();
未定义
var mySet = new Set('tom','jim','jack'); mySet.clear() var tot = mySet.size; console.log(tot);
0