map.has
map.has
方法has()
返回一个bool值,用来表明map 中是否存在指定元素.
语法
myMap.has(key
参数
key必填. 用来检测是否存在指定元素的键值.
返回值
Boolean如果指定元素存在于Map
中,则返回true
。其他情况返回false
示例
使用has方法
var myMap = new Map(
myMap.set('bar', "foo"
myMap.has('bar' // returns true
myMap.has('baz' // returns false
规范
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Map.prototype.has' in that specification. | Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262)The definition of 'Map.prototype.has' in that specification. | Living Standard | |
浏览器兼容性
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 38 | (Yes) | 13.0 (13.0) | 11 | 25 | 7.1 |
Feature | Android | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | No support | 38 | (Yes) | 13.0 (13.0) | No support | No support | 8 |