--- title: Map.prototype.has() slug: Web/JavaScript/Reference/Global_Objects/Map/has tags: - ECMAScript 2015 - JavaScript - Map - Méthode - Prototype - Reference translation_of: Web/JavaScript/Reference/Global_Objects/Map/has original_slug: Web/JavaScript/Reference/Objets_globaux/Map/has ---
{{JSRef}}

La méthode has() renvoie un booléen permettant de déterminer si l'objet Map en question contient la clé donnée.

{{EmbedInteractiveExample("pages/js/map-prototype-has.html")}}

Syntaxe

maMap.has(clé);

Paramètres

clé
Ce paramètre obligatoire correspond à la clé dont on veut savoir si elle appartient à l'objet Map.

Valeur de retour

Cette méthode renvoie un booléen : true si un élément avec cette clé existe au sein de l'objet Map et false sinon.

Exemples

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

maMap.has("truc");  // renvoie true
maMap.has("machin");// renvoie false

Spécifications

Spécification État Commentaires
{{SpecName('ES2015', '#sec-map.prototype.has', 'Map.prototype.has')}} {{Spec2('ES2015')}} Définition initiale.
{{SpecName('ESDraft', '#sec-map.prototype.has', 'Map.prototype.has')}} {{Spec2('ESDraft')}}  

Compatibilité des navigateurs

{{Compat("javascript.builtins.Map.has")}}

Voir aussi