该新特性属于 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 |