Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Set.prototype.clear()

Esta traducción está incompleta. Por favor, ayuda a traducir este artículo del inglés.

El método clear() remueve todos los elementos de un objeto Set.

Syntaxis

mySet.clear();

Valor de retorno

undefined.

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

 Colaboradores en esta página: frank-orellana
 Última actualización por: frank-orellana,