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.get()

该新特性属于 ECMAScript 2015(ES6)规范,在使用时请注意浏览器兼容性。

get() 方法用来获取一个 Map 对象中指定的元素。

语法

myMap.get(key);

参数

key
想要获取的元素的键。

返回值

返回一个 Map 对象中与指定键相关联的值,如果找不到这个键则返回 undefined

示例

使用 get 方法

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

myMap.get("bar");  // 返回 "foo".
myMap.get("baz");  // 返回 undefined.

规范

Specification Status Comment
ECMAScript 2015 (6th Edition, ECMA-262)
Map.prototype.get
Standard Initial definition.

浏览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 38 13.0 (13.0) 11 25 7.1
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support 未实现 38 13.0 (13.0) 未实现 未实现 8

相关链接

文档标签和贡献者

 此页面的贡献者: ziyunfei, Zhiyu_Wang
 最后编辑者: ziyunfei,