aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript/reference/global_objects/weakmap/clear/index.md
blob: 18f7ab622b8974442033e4e5b5bb3ca409a831cc (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
---
title: WeakMap.prototype.clear()
slug: Web/JavaScript/Reference/Global_Objects/WeakMap/clear
tags:
  - JavaScript
  - Method
  - Deprecated
  - Prototype
  - WeakMap
browser-compat: javascript.builtins.WeakMap.clear
translation_of: Web/JavaScript/Reference/Global_Objects/WeakMap/clear
---
{{JSRef}} {{deprecated_header}}

**`clear()`** メソッドは、 `WeakMap` オブジェクトからすべての要素を削除するために使用されていましたが、もはや ECMAScript とその実装に含まれていません。

## 構文

```js
clear()
```

## 例

### `clear` メソッドの使用

```js example-bad
var wm = new WeakMap();
var obj = {};

wm.set(obj, 'foo');
wm.set(window, 'bar');

wm.has(obj); // true
wm.has(window); // true

wm.clear();

wm.has(obj)  // false
wm.has(window)  // false
```

## 仕様書

どの標準にも含まれていません。

## ブラウザーの互換性

{{Compat}}

## 関連情報

- {{jsxref("WeakMap")}}