From 35292f2a96c6c620477e85dac7397dbe6a5b5c8d Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sun, 8 Sep 2024 09:24:31 +0900 Subject: [PATCH] =?UTF-8?q?2024/07/08=20=E6=99=82=E7=82=B9=E3=81=AE?= =?UTF-8?q?=E8=8B=B1=E8=AA=9E=E7=89=88=E3=81=AB=E5=9F=BA=E3=81=A5=E3=81=8D?= =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/glossary/static_method/index.md | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/files/ja/glossary/static_method/index.md b/files/ja/glossary/static_method/index.md index f1bf52c7e7e1f8..9033482eb2a72f 100644 --- a/files/ja/glossary/static_method/index.md +++ b/files/ja/glossary/static_method/index.md @@ -1,6 +1,8 @@ --- title: Static method (静的メソッド) slug: Glossary/Static_method +l10n: + sourceCommit: 424582339e3d3de819667b2e5e2ea52a180fe84c --- {{GlossarySidebar}} @@ -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(); @@ -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", "メソッド")}}