[ Web Proxy ]
URL:
Viewing: https://developer.mozilla.org/es/docs/Web/JavaScript/Reference/Global_Objects/Set/clear [Back]  [Original]

Set.prototype.clear() - JavaScript | MDN

Esta pgina ha sido traducida del ingls por la comunidad. Aprende ms y nete a la comunidad de MDN Web Docs.

View in English Always switch to English

Set.prototype.clear()

Baseline Widely available

This feature is well established and works across many devices and browser versions. Its been available across browsers since julio de 2015.

El mtodo clear() remueve todos los elementos de un objeto Set.

In this article

Sintaxis

mySet.clear();

Valor de retorno

undefined.

Ejemplos

Usando el mtodo clear

js
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

Specification
ECMAScript 2027 LanguageSpecification
# sec-set.prototype.clear

Compatibilidad con navegadores

Ver tambin


Web Proxy Viewer  |  New URL  |  Original Page