aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/javascript/referencje/obiekty/map/clear/index.html
blob: a4e73741271d9a8b13ea1890bf83330f71412284 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
title: Map.prototype.clear()
slug: Web/JavaScript/Referencje/Obiekty/Map/clear
tags:
  - ECMAScript 2015
  - JavaScript
  - Mapa
  - Metodă
  - Prototyp
translation_of: Web/JavaScript/Reference/Global_Objects/Map/clear
---
<div>{{JSRef}}</div>

<p>Metoda <code><strong>clear()</strong></code> usuwa wszystkie elementy z obiektu <code>Map</code>.</p>

<pre class="brush: js">var map1 = new Map();

map1.set('bar', 'baz');
map1.set(1, 'foo');

console.log(map1.size);
// wartość zwracana: 2

map1.clear();

console.log(map1.size);
// wartość zwracana: 0
</pre>

<h2 id="Składnia">Składnia</h2>

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

<h3 id="Zwracana_wartość">Zwracana wartość</h3>

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

<h2 id="Przykłady">Przykłady</h2>

<h3 id="Używanie_metody_clear">Używanie metody <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="Specyfikacja">Specyfikacja</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specyfikacja</th>
   <th scope="col">Status</th>
   <th scope="col">Komentarz</th>
  </tr>
  <tr>
   <td>{{SpecName('ES2015', '#sec-map.prototype.clear', 'Map.prototype.clear')}}</td>
   <td>{{Spec2('ES2015')}}</td>
   <td>Definicja początkowa.</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="Kompatybilność_z_przeglądarkami">Kompatybilność z przeglądarkami</h2>



<p>{{Compat("javascript.builtins.Map.clear")}}</p>

<h2 id="Zobacz_również">Zobacz również</h2>

<ul>
 <li>{{jsxref("Map")}}</li>
</ul>