blob: 0e23cac24cab12680249b11d66994e0b54b52a1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
---
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
---
{{JSRef}}
La méthode **`clear()`** permet de retirer tous les éléments d'un ensemble `Set`.
{{EmbedInteractiveExample("pages/js/set-prototype-clear.html")}}
## Syntaxe
monSet.clear();
### Valeur de retour
{{jsxref("undefined")}}.
## Exemples
```js
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écifications
| 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')}} | |
## Compatibilité des navigateurs
{{Compat("javascript.builtins.Set.clear")}}
### Voir aussi
- {{jsxref("Set")}}
- {{jsxref("Set.prototype.delete()")}}
|