← 返回首页
Set.prototype.clear() - JavaScript | MDN

Esta página ha sido traducida del inglés por la comunidad. Aprende más 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. It’s been available across browsers since julio de 2015.

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

In this article

Sintaxis

mySet.clear();

Valor de retorno

undefined.

Ejemplos

Usando el método 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 Language Specification
# sec-set.prototype.clear

Compatibilidad con navegadores

Enable JavaScript to view this browser compatibility table.

Ver también