--- title: Set.prototype.clear() slug: Web/JavaScript/Reference/Global_Objects/Set/clear tags: - ECMAScript 2015 - JavaScript - Méthode - Prototype - Reference - set translation_of: Web/JavaScript/Reference/Global_Objects/Set/clear original_slug: Web/JavaScript/Reference/Objets_globaux/Set/clear ---
La méthode clear()
permet de retirer tous les éléments d'un ensemble Set
.
monSet.clear();
{{jsxref("undefined")}}.
var monSet = new Set(); monSet.add(1); monSet.add("toto"); monSet.size; // 2 monSet.has("toto"); // true monSet.clear(); monSet.size; // 0 monSet.has("truc") // false
Spécification | État | Commentaires |
---|---|---|
{{SpecName('ES2015', '#sec-set.prototype.clear', 'Set.prototype.clear')}} | {{Spec2('ES2015')}} | Définition initiale. |
{{SpecName('ESDraft', '#sec-set.prototype.clear', 'Set.prototype.clear')}} | {{Spec2('ESDraft')}} |
{{Compat("javascript.builtins.Set.clear")}}