--- title: Map.prototype.get() slug: Web/JavaScript/Referencje/Obiekty/Map/get tags: - ECMAScript 2015 - JavaScript - Mapa - Metodă - Prototyp translation_of: Web/JavaScript/Reference/Global_Objects/Map/get ---
Metoda get()
zwraca podany element Mapy
.
myMap.get(key);
Element powiązany z danym kluczym lub undefined
, jeśli klucz nie został odnaleziony.
get
var myMap = new Map(); myMap.set('bar', 'foo'); myMap.get('bar'); // zwraca "foo". myMap.get('baz'); // zwraca undefined.
Specyfikacja | Status | Komentarz |
---|---|---|
{{SpecName('ES2015', '#sec-map.prototype.get', 'Map.prototype.get')}} | {{Spec2('ES2015')}} | Definicja początkowa. |
{{SpecName('ESDraft', '#sec-map.prototype.get', 'Map.prototype.get')}} | {{Spec2('ESDraft')}} |
{{Compat("javascript.builtins.Map.get")}}