size
accessor property returns the number of elements in a
Map
对象。
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
值
size
is an integer representing how many entries the
Map
object has. A set accessor function for
size
is
undefined
; you can not change this property.
size
var myMap = new Map();
myMap.set('a', 'alpha');
myMap.set('b', 'beta');
myMap.set('g', 'gamma');
myMap.size // 3
| 规范 |
|---|
|
ECMAScript (ECMA-262)
The definition of 'Map.prototype.size' in that specification. |
| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
size
|
Chrome 38 | Edge 12 |
Firefox
19
|
IE 11 | Opera 25 | Safari 8 | WebView Android 38 | Chrome Android 38 |
Firefox Android
19
|
Opera Android 25 | Safari iOS 8 | Samsung Internet Android 3.0 | nodejs 0.12 |
完整支持
见实现注意事项。
Map
Map.prototype.size
Map.prototype[@@toStringTag]
get Map[@@species]
Function
Object
Object.prototype.__defineGetter__()
Object.prototype.__defineSetter__()
Object.prototype.__lookupGetter__()
Object.prototype.__lookupSetter__()
Object.prototype.hasOwnProperty()
Object.prototype.isPrototypeOf()
Object.prototype.propertyIsEnumerable()
Object.prototype.toLocaleString()
Object.prototype.toSource()
Object.prototype.toString()
Object.prototype.valueOf()
Object.setPrototypeOf()