Traducción en curso
El método clear()
remueve todos los elementos de un objeto Set
.
Syntaxis
mySet.clear();
Valor de retorno
Ejemplos
Usando el método clear
var mySet = new Set(); mySet.add(1); mySet.add("foo"); mySet.size; // 2 mySet.has("foo"); // true mySet.clear(); mySet.size; // 0 mySet.has("bar") // false
Especificaciones
Especificación | Estado | Comentario |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Set.prototype.clear' in that specification. |
Standard | Initial definition. |
ECMAScript 2017 Draft (ECMA-262) The definition of 'Set.prototype.clear' in that specification. |
Draft |
Compatibilidad de navegadores
Característica | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Soporte básico | 38 | 19.0 (19.0) | 11 | 25 | 7.1 |
Característica | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Soporte básico | No support | 25 | 19.0 (19.0) | No support | No support | 8 |
Ver también
Etiquetas y colaboradores del documento
Etiquetas:
Colaboradores en esta página:
frank-orellana
Última actualización por:
frank-orellana,