This page was translated from English by the community.Learn more and join the MDN Web Docs community.
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 июль 2015 г..
Методclear() удаляет все элементы из объектаSet.
In this article
Синтаксис
mySet.clear();
Возвращаемое значение
Примеры
>Использование методаclear
js
var mySet = new Set();mySet.add(1);mySet.add("foo");mySet.size; // 2mySet.has("foo"); // truemySet.clear();mySet.size; // 0mySet.has("bar"); // falseСпецификации
| Specification |
|---|
| ECMAScript® 2026 Language Specification> # sec-set.prototype.clear> |