--- title: Map.prototype slug: Web/JavaScript/Reference/Global_Objects/Map/prototype translation_of: Web/JavaScript/Reference/Global_Objects/Map translation_of_original: Web/JavaScript/Reference/Global_Objects/Map/prototype ---
{{JSRef}}

Map.prototype özelliği {{jsxref("Map")}} kurucusunun prototipini temsil eder.

{{js_property_attributes(0,0,0)}}

Tanım

{{jsxref("Map")}} örnekleri {{jsxref("Map.prototype")}}'den miras alınır. Tüm Map örneklerine özellikler veya yöntemler eklemek için yapıcının prototip nesnesini kullanabilirsiniz.

Özellikleri

Map.prototype.constructor
Bir örneğin prototipini oluşturan işlevi döndürür. Bu, varsayılan olarak {{jsxref("Map")}} işlevidir.
{{jsxref("Map.prototype.size")}}
Map nesnesindeki anahtar / değer çiftlerinin sayısını döndürür.

Yöntemler

{{jsxref("Map.prototype.clear()")}}
Tüm anahtar / değer çiftlerini Map objesinden siler.
{{jsxref("Map.delete", "Map.prototype.delete(key)")}}
Map nesnesindeki bir öge varsa ve kaldırılmışsa true öge yoksa false döndürür. Map.prototype.has(key) daha sonra false döndürür.
{{jsxref("Map.prototype.entries()")}}
Ekleme sırasındaki Map nesnesindeki her öge için [anahtar, değer] dizisini içeren yeni bir Iterator nesnesini döndürür.
{{jsxref("Map.forEach", "Map.prototype.forEach(callbackFn[, thisArg])")}}
Map nesnesindeki her anahtar - değer çifti için ekleme sırasına göre callbackFn ögesini bir kez çağırır.  thisArg parametresi forEach için sağlanmışsa, her geri çağırma için bu değer olarak kullanılacaktır.
{{jsxref("Map.get", "Map.prototype.get(key)")}}
key ile ilişkilendirilmiş değeri veya hiçbir şey yoksa undefined değerini döndürür.
{{jsxref("Map.has", "Map.prototype.has(key)")}}
Map nesnesindeki bir değerin key ile ilişkili olup olmadığını belirten bir boolean döndürür.
{{jsxref("Map.prototype.keys()")}}
Map nesnesindeki her bir ögenin anahtarlarını ekleme sırasına göre içeren yeni bir Iterator nesnesi döndürür.
{{jsxref("Map.set", "Map.prototype.set(key, value)")}}
Mapnesnesindeki key değerini ayarlar. Map nesnesini döndürür.
{{jsxref("Map.prototype.values()")}}
Map nesnesindeki her bir ögenin değerlerini ekleme sırasına göre içeren yeni bir  Iterator nesnesi döndürür.
{{jsxref("Map.@@iterator", "Map.prototype[@@iterator]()")}}
Ekleme sırasındaki Map nesnesindeki her bir öge için[anahtar, değer] dizisini içeren yeni bir Iterator nesnesini döndürür.

Şartlar

Şart Durum Açıklama
{{SpecName('ES2015', '#sec-map.prototype', 'Map.prototype')}} {{Spec2('ES2015')}}

İlk tanım

{{SpecName('ESDraft', '#sec-map.prototype', 'Map.prototype')}} {{Spec2('ESDraft')}}  

Tarayıcı Uyumluluğu

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

Ayrıca Bakınız