diff options
Diffstat (limited to 'files/ja/web/javascript/reference/classes/public_class_fields/index.html')
-rw-r--r-- | files/ja/web/javascript/reference/classes/public_class_fields/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/javascript/reference/classes/public_class_fields/index.html b/files/ja/web/javascript/reference/classes/public_class_fields/index.html index 18614027ce..b4dcd87d5c 100644 --- a/files/ja/web/javascript/reference/classes/public_class_fields/index.html +++ b/files/ja/web/javascript/reference/classes/public_class_fields/index.html @@ -217,7 +217,7 @@ console.log(instance.subPublicMethod()) // expected output: "hello world" </pre> -<p>ゲッターとセッターは、クラスのプロパティにバインドする特別なメソッドで、そのプロパティがアクセスされたり設定されたりしたときに呼び出されます。<a href="https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Functions/get">get</a> および <a href="https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Functions/set">set</a> 構文を使用して、パブリックインスタンスのゲッターまたはセッターを宣言します。</p> +<p>ゲッターとセッターは、クラスのプロパティにバインドする特別なメソッドで、そのプロパティがアクセスされたり設定されたりしたときに呼び出されます。<a href="/ja/docs/Web/JavaScript/Reference/Functions/get">get</a> および <a href="/ja/docs/Web/JavaScript/Reference/Functions/set">set</a> 構文を使用して、パブリックインスタンスのゲッターまたはセッターを宣言します。</p> <pre class="brush: js notranslate">class ClassWithGetSet { #msg = 'hello world' |