aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/javascript/reference/global_objects/set/clear/index.html
blob: 6fde7eb014809f253854eef050c6f63dd576ad18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
title: Set.prototype.clear()
slug: Web/JavaScript/Reference/Global_Objects/Set/clear
tags:
  - ECMAScript6
  - JavaScript
  - Method
  - Prototype
  - set
translation_of: Web/JavaScript/Reference/Global_Objects/Set/clear
---
<div>{{JSRef}}</div>

<p>Метод <code><strong>clear()</strong></code> удаляет все элементы из объекта <code>Set</code>.</p>

<h2 id="Синтаксис">Синтаксис</h2>

<pre class="syntaxbox"><code><em>mySet</em>.clear();</code></pre>

<h3 id="Возвращаемое_значение">Возвращаемое значение</h3>

<p>{{jsxref("undefined")}}.</p>

<h2 id="Примеры">Примеры</h2>

<h3 id="Использование_метода_clear">Использование метода <code>clear</code></h3>

<pre class="brush: 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
</pre>

<h2 id="Спецификации">Спецификации</h2>

{{Specifications}}

<h2 id="Совместимость_с_браузерами">Совместимость с браузерами</h2>



<p>{{Compat}}</p>

<h2 id="Смотрите_также">Смотрите также</h2>

<ul>
 <li>{{jsxref("Set")}}</li>
 <li>{{jsxref("Set.prototype.delete()")}}</li>
</ul>