--- title: Set.prototype.clear() slug: Web/JavaScript/Reference/Global_Objects/Set/clear tags: - ECMAScript6 - JavaScript - Prototype - set - 原型 - 方法 translation_of: Web/JavaScript/Reference/Global_Objects/Set/clear ---
clear()
方法用来清空一个 Set
对象中的所有元素。
mySet.clear();
{{jsxref("undefined")}}.
var mySet = new Set(); mySet.add(1); mySet.add("foo"); mySet.size; // 2 mySet.has("foo"); // true mySet.clear(); mySet.size; // 0 mySet.has("bar") // false
Specification | Status | Comment |
---|---|---|
{{SpecName('ES6', '#sec-set.prototype.clear', 'Set.prototype.clear')}} | {{Spec2('ES6')}} | Initial definition. |
{{SpecName('ESDraft', '#sec-set.prototype.clear', 'Set.prototype.clear')}} | {{Spec2('ESDraft')}} |