Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Map.prototype.clear()

La méthode clear() supprime tous les éléments d'un objet Map.

Syntaxe

maMap.clear();

Valeur de retour

undefined.

Exemple

Utiliser la méthode clear

var maMap = new Map();
maMap.set("truc", "bidule");
maMap.set(1, "toto");

maMap.size;        // 2
maMap.has("truc"); // true

maMap.clear();

maMap.size;        // 0
maMap.has("truc")  // false

Spécifications

Spécification État Commentaires
ECMAScript 2015 (6th Edition, ECMA-262)
La définition de 'Map.prototype.clear' dans cette spécification.
Standard Définition initiale.
ECMAScript 2017 Draft (ECMA-262)
La définition de 'Map.prototype.clear' dans cette spécification.
Projet  

Compatibilité des navigateurs

Fonctionnalité Chrome Firefox (Gecko) Internet Explorer Opera Safari
Support simple 38 19.0 (19.0) 11 25 7.1
Fonctionnalité Android Chrome pour Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Support simple Pas de support 38 19.0 (19.0) Pas de support Pas de support 8

Voir aussi

Étiquettes et contributeurs liés au document

 Contributeurs à cette page : SphinxKnight, teoli
 Dernière mise à jour par : SphinxKnight,