返回Set对象中的值的数量。
Myset.size
var mySet = new Set('tom','jim','jack'); var tot = mySet.size; console.log(tot);
3