--- title: Map.prototype.has() slug: Web/JavaScript/Reference/Global_Objects/Map/has tags: - ECMAScript 2015 - JavaScript - Map - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Map/has ---
{{JSRef}}

Die has() Methode gibt einen boolean zurück, welcher angibt, ob ein spezieller Schlüssel vorhanden ist oder nicht.

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

Syntax

myMap.has(schlüssel);

Parameter

schlüssel
Der Schlüssel, auf dessen Präsenz in dem Map Objekt geprüft wird.

Return value

Boolean
Gibt true zurück, wenn ein Element mit Schlüssel in dem Map Objekt existiert, andernfalls false.

Beispiele

Einsatz der has Methode

var myMap = new Map();
myMap.set('bar', "foo");

myMap.has('bar');  // returns true
myMap.has('baz');  // returns false

Spezifikationen

Spezifikation Status Kommentar
{{SpecName('ES2015', '#sec-map.prototype.has', 'Map.prototype.has')}} {{Spec2('ES2015')}} Initiale Definition.
{{SpecName('ESDraft', '#sec-map.prototype.has', 'Map.prototype.has')}} {{Spec2('ESDraft')}}  

Browserkompatibilität

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

Siehe auch