aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/javascript/reference/global_objects/map/clear/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/javascript/reference/global_objects/map/clear/index.html')
-rw-r--r--files/ru/web/javascript/reference/global_objects/map/clear/index.html71
1 files changed, 0 insertions, 71 deletions
diff --git a/files/ru/web/javascript/reference/global_objects/map/clear/index.html b/files/ru/web/javascript/reference/global_objects/map/clear/index.html
deleted file mode 100644
index 487ba03b2a..0000000000
--- a/files/ru/web/javascript/reference/global_objects/map/clear/index.html
+++ /dev/null
@@ -1,71 +0,0 @@
----
-title: Map.prototype.clear()
-slug: Web/JavaScript/Reference/Global_Objects/Map/clear
-tags:
- - ECMAScript6
- - JavaScript
- - Map
- - Method
- - Prototype
-translation_of: Web/JavaScript/Reference/Global_Objects/Map/clear
----
-<div>{{JSRef}}</div>
-
-<p><code><font face="Open Sans, arial, sans-serif">Метод </font><strong>clear()</strong></code> удаляет все элементы из объекта <code>Map</code>.</p>
-
-<h2 id="Синтаксис">Синтаксис</h2>
-
-<pre class="syntaxbox"><code><em>myMap</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 myMap = new Map();
-myMap.set('bar', 'baz');
-myMap.set(1, 'foo');
-
-myMap.size; // 2
-myMap.has('bar'); // true
-
-myMap.clear();
-
-myMap.size; // 0
-myMap.has('bar') // false
-</pre>
-
-<h2 id="Спецификации">Спецификации</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Спецификация</th>
- <th scope="col">Статус</th>
- <th scope="col">Комментарий</th>
- </tr>
- <tr>
- <td>{{SpecName('ES2015', '#sec-map.prototype.clear', 'Map.prototype.clear')}}</td>
- <td>{{Spec2('ES2015')}}</td>
- <td>Изначальное определение.</td>
- </tr>
- <tr>
- <td>{{SpecName('ESDraft', '#sec-map.prototype.clear', 'Map.prototype.clear')}}</td>
- <td>{{Spec2('ESDraft')}}</td>
- <td> </td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Совместимость_с_браузерами">Совместимость с браузерами</h2>
-
-<p>{{Compat}}</p>
-
-<h2 id="Смотрите_также">Смотрите также</h2>
-
-<ul>
- <li>{{jsxref("Map")}}</li>
-</ul>