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 July 2015.
Die clear()
-Methode von Set
-Instanzen entfernt alle Elemente aus diesem Set.
Probieren Sie es aus
Syntax
js
clear()
Parameter
Keine.
Rückgabewert
Keiner (undefined
).
Beispiele
Verwendung der clear()-Methode
js
const mySet = new Set();
mySet.add(1);
mySet.add("foo");
console.log(mySet.size); // 2
console.log(mySet.has("foo")); // true
mySet.clear();
console.log(mySet.size); // 0
console.log(mySet.has("foo")); // false
Spezifikationen
Specification |
---|
ECMAScript Language Specification # sec-set.prototype.clear |
Browser-Kompatibilität
BCD tables only load in the browser