Esta traducción está incompleta. Por favor, ayuda a traducir este artículo del inglés.
La propiedad de acceso size
devuelve el número de elementos que hay en el objeto Set
.
Descripción
El valor de size
es un entero que representa cuantas entradas tiene el objeto Set
. A set accessor function for size
is undefined
; you can not change this property.
Ejemplos
Usando size
var mySet = new Set(); mySet.add(1); mySet.add(5); mySet.add("some text") mySet.size; // 3
Especificaciones
Especificación | Estatus | Comentario |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Set.prototype.size' in that specification. |
Standard | Definición inicial |
ECMAScript 2016 Draft (7th Edition, ECMA-262) The definition of 'Set.prototype.size' in that specification. |
Draft |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 38 | 19 (19) [1] | 11 | 25 | 7.1 |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | No support | 38 | 19.0 (19) | No support | No support | 8 |
[1] From Gecko 13 (Firefox 13 / Thunderbird 13 / SeaMonkey 2.10) to Gecko 18 (Firefox 18 / Thunderbird 18 / SeaMonkey 2.15 / Firefox OS 1.0.1 / Firefox OS 1.1) la propiedad size fue implementado como un método Set.prototype.size()
, esto fue cambiado a una propiedad en versiones posteriores conforme la especificación ECMAScript 6 (bug 807001).
Ver también
Etiquetas y colaboradores del documento
Colaboradores en esta página:
Chofoteddy
Última actualización por:
Chofoteddy,