Skip to content

Commit

Permalink
2024/07/08 時点の英語版に基づき更新
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Sep 11, 2024
1 parent 0444ad2 commit 35292f2
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions files/ja/glossary/static_method/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
title: Static method (静的メソッド)
slug: Glossary/Static_method
l10n:
sourceCommit: 424582339e3d3de819667b2e5e2ea52a180fe84c
---

{{GlossarySidebar}}
Expand All @@ -13,7 +15,7 @@ slug: Glossary/Static_method

##

[Notifications API](/ja/docs/Web/API/Notifications_API) では、{{domxref("Notification.requestPermission()")}} メソッドは実際は {{domxref("Notification")}} コンストラクター自身に対して呼び出されます。— これが静的メソッドです。
[通知 API](/ja/docs/Web/API/Notifications_API) では、{{domxref("Notification.requestPermission_static")}} メソッドは実際は {{domxref("Notification")}} コンストラクター自身に対して呼び出されます。— これが静的メソッドです。

```js
let promise = Notification.requestPermission();
Expand All @@ -27,15 +29,10 @@ let myNotification = new Notification("This is my notification");
myNotification.close();
```

1. 一般知識
## 関連情報

1. Techopedia の [Static Method](https://www.techopedia.com/definition/24034/static-method)

2. JavaScript リファレンス

1. [static](/ja/docs/Web/JavaScript/Reference/Classes/static)

3. 関連用語:

1. {{Glossary("Object", "オブジェクト")}}
2. {{Glossary("Method", "メソッド")}}
- [Static Method](https://www.techopedia.com/definition/24034/static-method) (Techopedia)
- [static](/ja/docs/Web/JavaScript/Reference/Classes/static)
- 関連用語:
- {{Glossary("Object", "オブジェクト")}}
- {{Glossary("Method", "メソッド")}}

0 comments on commit 35292f2

Please sign in to comment.