aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-06-09 01:48:21 +0900
committerpotappo <potappo@gmail.com>2021-06-19 16:35:37 +0900
commite968c7e8d8c55cbcfed3a561a74162d6cee5e5c7 (patch)
tree4c9ebfa6d800084a5643084ebfe5654fffab6015 /files/ja/web/javascript
parenta8c13a7cb1f780c7ef085ca7443df80b6f2f9aa1 (diff)
downloadtranslated-content-e968c7e8d8c55cbcfed3a561a74162d6cee5e5c7.tar.gz
translated-content-e968c7e8d8c55cbcfed3a561a74162d6cee5e5c7.tar.bz2
translated-content-e968c7e8d8c55cbcfed3a561a74162d6cee5e5c7.zip
Web/JavaScript/Reference/Errors/C* を更新
2021/03/29 時点の英語版に同期
Diffstat (limited to 'files/ja/web/javascript')
-rw-r--r--files/ja/web/javascript/reference/errors/called_on_incompatible_type/index.html36
-rw-r--r--files/ja/web/javascript/reference/errors/cant_access_property/index.html35
-rw-r--r--files/ja/web/javascript/reference/errors/cant_assign_to_property/index.html34
-rw-r--r--files/ja/web/javascript/reference/errors/cant_define_property_object_not_extensible/index.html36
-rw-r--r--files/ja/web/javascript/reference/errors/cant_delete/index.html39
5 files changed, 99 insertions, 81 deletions
diff --git a/files/ja/web/javascript/reference/errors/called_on_incompatible_type/index.html b/files/ja/web/javascript/reference/errors/called_on_incompatible_type/index.html
index aaf0d62155..f1f15add68 100644
--- a/files/ja/web/javascript/reference/errors/called_on_incompatible_type/index.html
+++ b/files/ja/web/javascript/reference/errors/called_on_incompatible_type/index.html
@@ -2,42 +2,42 @@
title: 'TypeError: X.prototype.y called on incompatible type'
slug: Web/JavaScript/Reference/Errors/Called_on_incompatible_type
tags:
- - Error
- - Errors
- - JavaScript
- - TypeError
+- Error
+- Errors
+- JavaScript
+- TypeError
translation_of: Web/JavaScript/Reference/Errors/Called_on_incompatible_type
---
<div>{{jsSidebar("Errors")}}</div>
<p>JavaScript の例外 "called on incompatible target (or object)" は、関数が (与えられたオブジェクト上で) 呼び出されたときに、関数が期待する型に対応していない <code>this</code> を使用して呼び出された場合に発生します。</p>
-<h2 id="Message" name="Message">メッセージ</h2>
+<h2 id="Message">エラーメッセージ</h2>
-<pre class="syntaxbox notranslate">TypeError: 'this' is not a Set object (EdgE)
+<pre class="brush: js">TypeError: 'this' is not a Set object (Edge)
TypeError: Function.prototype.toString called on incompatible object (Firefox)
TypeError: Function.prototype.bind called on incompatible target (Firefox)
TypeError: Method Set.prototype.add called on incompatible receiver undefined (Chrome)
TypeError: Bind must be called on a function (Chrome)
</pre>
-<h2 id="Error_type" name="Error_type">エラー種別</h2>
+<h2 id="Error_type">エラーの種類</h2>
<p>{{jsxref("TypeError")}}</p>
-<h2 id="What_went_wrong" name="What_went_wrong">原因</h2>
+<h2 id="What_went_wrong">エラーの原因</h2>
-<p>このエラーがスローされる場合、(指定されたオブジェクト上の) 関数が、関数が予期する型に対応していない <code>this</code> と共に呼び出されています。</p>
+<p>このエラーが発生する場合、(指定されたオブジェクト上の) 関数が、関数が予期する型に対応していない <code>this</code> と共に呼び出されています。</p>
<p>この問題は {{jsxref("Function.prototype.call()")}} メソッドか {{jsxref("Function.prototype.apply()")}} メソッドを使用して、予期していない型の <code>this</code> 引数を渡した場合に発生します。</p>
<p>この問題は、オブジェクトのプロパティとして格納されている関数を他の関数の引数として提供する場合にも発生します。この場合、関数を格納しているオブジェクトは、他の関数から呼び出されたときに、その関数の <code>this</code> のターゲットにはなりません。この問題を回避するには、呼び出しを行っているラムダを提供するか、 {{jsxref("Function.prototype.bind()")}} 関数を使用して <code>this</code> 引数を期待されるオブジェクトに強制的に渡す必要があります。</p>
-<h2 id="Examples" name="Examples">例</h2>
+<h2 id="Examples">例</h2>
-<h3 id="Invalid_cases" name="Invalid_cases">無効な場合</h3>
+<h3 id="Invalid_cases">無効な場合</h3>
-<pre class="brush: js example-bad notranslate">var mySet = new Set;
+<pre class="brush: js example-bad">var mySet = new Set;
['bar', 'baz'].forEach(mySet.add);
// mySet.add is a function, but "mySet" is not captured as this.
@@ -49,9 +49,9 @@ var myFun = function () {
</pre>
-<h3 id="Valid_cases" name="Valid_cases">妥当な場合</h3>
+<h3 id="Valid_cases">妥当な場合</h3>
-<pre class="brush: js example-good notranslate">var mySet = new Set;
+<pre class="brush: js example-good">var mySet = new Set;
['bar', 'baz'].forEach(mySet.add.bind(mySet));
// This works due to binding "mySet" as this.
@@ -63,10 +63,10 @@ var myFun = function () {
</pre>
-<h2 id="See_also" name="See_also">関連情報</h2>
+<h2 id="See_also">関連情報</h2>
<ul>
- <li>{{jsxref("Function.prototype.call()")}}</li>
- <li>{{jsxref("Function.prototype.apply()")}}</li>
- <li>{{jsxref("Function.prototype.bind()")}}</li>
+ <li>{{jsxref("Function.prototype.call()")}}</li>
+ <li>{{jsxref("Function.prototype.apply()")}}</li>
+ <li>{{jsxref("Function.prototype.bind()")}}</li>
</ul>
diff --git a/files/ja/web/javascript/reference/errors/cant_access_property/index.html b/files/ja/web/javascript/reference/errors/cant_access_property/index.html
index b9bd300b79..a2fc8a56b4 100644
--- a/files/ja/web/javascript/reference/errors/cant_access_property/index.html
+++ b/files/ja/web/javascript/reference/errors/cant_access_property/index.html
@@ -2,38 +2,41 @@
title: 'TypeError: can''t access property "x" of "y"'
slug: Web/JavaScript/Reference/Errors/Cant_access_property
tags:
- - Error
- - JavaScript
- - TypeError
+- Error
+- Errors
+- JavaScript
+- TypeError
translation_of: Web/JavaScript/Reference/Errors/Cant_access_property
---
<div>{{jsSidebar("Errors")}}</div>
-<h2 id="メッセージ">メッセージ</h2>
+<p>JavaScript の例外 "can't access property" は、 {{jsxref("undefined")}} または {{jsxref("null")}} の値に対してプロパティのアクセスが行われた場合に発生します。</p>
-<pre class="syntaxbox">TypeError: Unable to get property {x} of undefined or null reference (Edge)
+<h2 id="Message">エラーメッセージ</h2>
+
+<pre class="brush: js">TypeError: Unable to get property {x} of undefined or null reference (Edge)
TypeError: can't access property {x} of {y} (Firefox)
TypeError: {y} is undefined, can't access property {x} of it (Firefox)
TypeError: {y} is null, can't access property {x} of it (Firefox)
-Examples:
+例:
TypeError: x is undefined, can't access property "prop" of it
TypeError: x is null, can't access property "prop" of it
TypeError: can't access property "prop" of undefined
TypeError: can't access property "prop" of null
</pre>
-<h2 id="エラータイプ">エラータイプ</h2>
+<h2 id="Error_type">エラーの種類</h2>
-<p>{{jsxref("TypeError")}}。</p>
+<p>{{jsxref("TypeError")}}</p>
-<h2 id="何がうまくいかなかったのか?">何がうまくいかなかったのか?</h2>
+<h2 id="What_went_wrong">エラーの原因</h2>
<p>{{jsxref("undefined")}} か {{jsxref("null")}} に対してプロパティアクセスを行いました。</p>
-<h2 id="例">例</h2>
+<h2 id="Examples">例</h2>
-<h3 id="無効なケース">無効なケース</h3>
+<h3 id="Invalid_cases">無効な場合</h3>
<pre class="brush: js example-bad">// undefined and null cases on which the substring method won't work
var foo = undefined;
@@ -43,17 +46,17 @@ var foo = null;
foo.substring(1); // TypeError: x is null, can't access property "substring" of it
</pre>
-<h3 id="問題解決">問題解決</h3>
+<h3 id="Fixing_the_issue">問題の修正</h3>
-<p><code>undefined</code> か <code>null</code> の null pointer アクセスを修正するには、たとえば <a href="/ja/docs/Web/JavaScript/Reference/Operators/typeof">typeof</a> 演算子を使用できます。</p>
+<p><code>undefined</code> か <code>null</code> のヌルポインターアクセスを修正するには、たとえば <a href="/ja/docs/Web/JavaScript/Reference/Operators/typeof">typeof</a> 演算子を使用することができます。</p>
<pre class="brush: js">if (typeof foo !== 'undefined') {
// Now we know that foo is defined, we are good to go.
}</pre>
-<h2 id="関連項目">関連項目</h2>
+<h2 id="See_also">関連情報</h2>
<ul>
- <li>{{jsxref("undefined")}}</li>
- <li>{{jsxref("null")}}</li>
+ <li>{{jsxref("undefined")}}</li>
+ <li>{{jsxref("null")}}</li>
</ul>
diff --git a/files/ja/web/javascript/reference/errors/cant_assign_to_property/index.html b/files/ja/web/javascript/reference/errors/cant_assign_to_property/index.html
index 8a9564ddc4..97f63535f9 100644
--- a/files/ja/web/javascript/reference/errors/cant_assign_to_property/index.html
+++ b/files/ja/web/javascript/reference/errors/cant_assign_to_property/index.html
@@ -10,36 +10,38 @@ translation_of: Web/JavaScript/Reference/Errors/Cant_assign_to_property
---
<div>{{jsSidebar("Errors")}}</div>
-<h2 id="メッセージ">メッセージ</h2>
+<p>JavaScript の strict モードの例外 "can't assign to property" は、<a href="/ja/docs/Glossary/Primitive">プリミティブ</a>値、例えば<a href="/ja/docs/Glossary/Symbol">シンボル</a>、<a href="/ja/docs/Glossary/String">文字列</a>、<a href="/ja/docs/Glossary/Number">数値</a>、<a href="/ja/docs/Glossary/Boolean">論理値</a>などにプロパティを作成しようとしたときに発生します。<a href="/ja/docs/Glossary/Primitive">プリミティブ</a>値はいかなる<a href="/ja/docs/Glossary/property/JavaScript">プロパティ</a>を持つこともできません。</p>
-<pre class="syntaxbox">TypeError: <code class="highlighted" id="line-87">can't assign to property "x" on {y}: not an object</code> (Firefox)
+<h2 id="Message">エラーメッセージ</h2>
+
+<pre class="brush: js">TypeError: can't assign to property &quot;x&quot; on {y}: not an object (Firefox)
TypeError: Cannot create property 'x' on {y} (Chrome)
</pre>
-<h2 id="エラータイプ">エラータイプ</h2>
+<h2 id="Error_type">エラーの種類</h2>
-<p>{{jsxref("TypeError")}}.</p>
+<p>{{jsxref("TypeError")}}</p>
-<h2 id="何がうまくいかなかったのか?">何がうまくいかなかったのか?</h2>
+<h2 id="What_went_wrong">エラーの原因</h2>
-<p>In {{jsxref("Strict_mode")}}, a {{jsxref("TypeError")}} is raised when attempting to create a property on {{Glossary("primitive")}} value such as a {{Glossary("symbol")}}, a {{Glossary("string")}}, a {{Glossary("number")}} or a {{Glossary("boolean")}}. {{Glossary("Primitive")}} values cannot hold any {{Glossary("property/JavaScript", "property")}}.</p>
+<p>{{jsxref("Strict_mode", "Strict モード", "", 1)}}では、 {{jsxref("TypeError")}} は<a href="/en-US/docs/Glossary/Primitive">プリミティブ</a>値、例えば<a href="/ja/docs/Glossary/Symbol">シンボル</a>、<a href="/ja/docs/Glossary/String">文字列</a>、<a href="/ja/docs/Glossary/Number">数値</a>、<a href="/ja/docs/Glossary/Boolean">論理値</a>などにプロパティを作成しようとしたときに発生します。<a href="/ja/docs/Glossary/Primitive">プリミティブ</a>値はいかなる<a href="/ja/docs/Glossary/property/JavaScript">プロパティ</a>を持つこともできません。</p>
-<p>The problem might be that an unexpected value is flowing at an unexpected place, or that an object variant of a {{jsxref("String")}} or a {{jsxref("Number")}} is expected.</p>
+<p>想定外の場所に想定外の値が流れてきたり、 {{jsxref("String")}} や {{jsxref("Number")}} のオブジェクトバリアントが想定されていたりすることが問題となることがあります。</p>
-<h2 id="例">例</h2>
+<h2 id="Examples">例</h2>
-<h3 id="無効なケース">無効なケース</h3>
+<h3 id="Invalid_cases">無効な場合</h3>
<pre class="brush: js example-bad">'use strict';
var foo = "my string";
-// The following line does nothing if not in strict mode.
-foo.bar = {}; // <span class="message-body-wrapper"><span class="message-flex-body"><span class="devtools-monospace message-body">TypeError: can't assign to property "bar" on "my string": not an object</span></span></span>
+// 次の行は strict モードでない場合は何もしません。
+foo.bar = {}; // TypeError: can't assign to property "bar" on "my string": not an object
</pre>
-<h3 id="問題を修正する">問題を修正する</h3>
+<h3 id="Fixing_the_issue">問題の修正</h3>
-<p>Either fix the code to prevent the {{Glossary("primitive")}} from being used in such places, or fix the issue is to create the object equivalent {{jsxref("Object")}}.</p>
+<p>このような場所で<a href="/ja/docs/Glossary/Primitive">プリミティブ</a>値を使用しないようにコードを修正するか、 {{jsxref("Object")}} と同等のオブジェクトを生成して問題を修正するかします。</p>
<pre class="brush: js example-good">'use strict';
@@ -47,9 +49,9 @@ var foo = new String("my string");
foo.bar = {};
</pre>
-<h2 id="あわせて参照">あわせて参照</h2>
+<h2 id="See_also">関連情報</h2>
<ul>
- <li>{{jsxref("Strict_mode")}}</li>
- <li>{{Glossary("primitive")}}</li>
+ <li>{{jsxref("Strict_mode", "Strict モード", "", 1)}}</li>
+ <li><a href="/ja/docs/Glossary/Primitive">プリミティブ</a></li>
</ul>
diff --git a/files/ja/web/javascript/reference/errors/cant_define_property_object_not_extensible/index.html b/files/ja/web/javascript/reference/errors/cant_define_property_object_not_extensible/index.html
index cc0eeecd06..fd01cab4ec 100644
--- a/files/ja/web/javascript/reference/errors/cant_define_property_object_not_extensible/index.html
+++ b/files/ja/web/javascript/reference/errors/cant_define_property_object_not_extensible/index.html
@@ -2,31 +2,37 @@
title: 'TypeError: can''t define property "x": "obj" is not extensible'
slug: Web/JavaScript/Reference/Errors/Cant_define_property_object_not_extensible
tags:
- - Error
- - Errors
- - JavaScript
- - TypeError
+- Error
+- Errors
+- JavaScript
+- TypeError
translation_of: Web/JavaScript/Reference/Errors/Cant_define_property_object_not_extensible
---
<div>{{jsSidebar("Errors")}}</div>
-<h2 id="メッセージ">メッセージ</h2>
+<p>JavaScript の例外 "can't define property "x": "obj" is not extensible" は {{jsxref("Object.preventExtensions()")}} でオブジェクトが拡張可能ではなくなったため、その時点で存在していたプロパティを設定できなかった際に発生します。</p>
-<pre class="syntaxbox">TypeError: can't define property "x": "obj" is not extensible (Firefox)
+<h2 id="Message">エラーメッセージ</h2>
+
+<pre class="brush: js">TypeError: Cannot create property for a non-extensible object (Edge)
+TypeError: can't define property "x": "obj" is not extensible (Firefox)
TypeError: Cannot define property: "x", object is not extensible. (Chrome)
</pre>
-<h2 id="エラータイプ">エラータイプ</h2>
+<h2 id="Error_type">エラーの種類</h2>
<p>{{jsxref("TypeError")}}</p>
-<h2 id="何がうまくいかなかったのか?">何がうまくいかなかったのか?</h2>
+<h2 id="What_went_wrong">エラーの原因</h2>
<p>通常、オブジェクトは拡張可能で、新しいプロパティを追加できます。しかしこの場合は、{{jsxref("Object.preventExtensions()")}} がオブジェクトをもはや拡張できないものに設定しているため、拡張不可のマークが付けられたときにあったプロパティ以上のプロパティを追加できません。</p>
-<h2 id="例">例</h2>
+<h2 id="Examples">例</h2>
+
+<h3 id="Adding_new_properties_to_a_non-extensible_objects">Adding new properties to a
+ non-extensible objects</h3>
-<p><a href="/ja/docs/Web/JavaScript/Reference/Strict_mode">strict モード</a>では、拡張不可のオブジェクトに新しいプロパティを追加しようとすると <code>TypeError</code> をスローします。非 strict モードでは、"x" プロパティの追加は暗黙的に無視されます。</p>
+<p><a href="/ja/docs/Web/JavaScript/Reference/Strict_mode">strict モード</a>では、拡張不可のオブジェクトに新しいプロパティを追加しようとすると <code>TypeError</code> が発生します。非 strict モードでは、"x" プロパティの追加は暗黙的に無視されます。</p>
<pre class="brush: js example-bad">'use strict';
@@ -37,7 +43,7 @@ obj.x = 'foo';
// TypeError: can't define property "x": "obj" is not extensible
</pre>
-<p><a href="/ja/docs/Web/JavaScript/Reference/Strict_mode">strict モード</a>と非 strict モード共に、拡張不可のオブジェクトに新しいプロパティを追加しようとして {{jsxref("Object.defineProperty()")}} を呼び出すと、例外をスローします。</p>
+<p><a href="/ja/docs/Web/JavaScript/Reference/Strict_mode">strict モード</a>と非 strict モード共に、拡張不可のオブジェクトに新しいプロパティを追加しようとして {{jsxref("Object.defineProperty()")}} を呼び出すと、例外が発生します。</p>
<pre class="brush: js example-bad">var obj = { };
Object.preventExtensions(obj);
@@ -48,17 +54,17 @@ Object.defineProperty(obj,
// TypeError: can't define property "x": "obj" is not extensible
</pre>
-<p>このエラーを修正するには、{{jsxref("Object.preventExtensions()")}} の呼び出しを削除するか、オブジェクトが拡張不可とマークされる前にプロパティを追加するように移動する必要があります。もちろん、必要がないのであれば、追加しようとしているプロパティを削除しても良いです。</p>
+<p>このエラーを修正するには、{{jsxref("Object.preventExtensions()")}} の呼び出しを削除するか、オブジェクトが拡張不可とマークされる前にプロパティを追加するように移動する必要があります。もちろん、必要がないのであれば、追加しようとしているプロパティを削除しても構いません。</p>
<pre class="brush: js example-good">'use strict';
var obj = {};
-obj.x = 'foo'; // add property first and only then prevent extensions
+obj.x = 'foo'; // プロパティを追加してから拡張不可にする
Object.preventExtensions(obj);</pre>
-<h2 id="関連項目">関連項目</h2>
+<h2 id="See_also">関連情報</h2>
<ul>
- <li>{{jsxref("Object.preventExtensions()")}}</li>
+ <li>{{jsxref("Object.preventExtensions()")}}</li>
</ul>
diff --git a/files/ja/web/javascript/reference/errors/cant_delete/index.html b/files/ja/web/javascript/reference/errors/cant_delete/index.html
index 2e2a44b27d..ca431a4ab7 100644
--- a/files/ja/web/javascript/reference/errors/cant_delete/index.html
+++ b/files/ja/web/javascript/reference/errors/cant_delete/index.html
@@ -2,6 +2,7 @@
title: 'TypeError: property "x" is non-configurable and can''t be deleted'
slug: Web/JavaScript/Reference/Errors/Cant_delete
tags:
+ - Error
- Errors
- JavaScript
- Strict Mode
@@ -10,46 +11,52 @@ translation_of: Web/JavaScript/Reference/Errors/Cant_delete
---
<div>{{jsSidebar("Errors")}}</div>
-<h2 id="メッセージ">メッセージ</h2>
+<p>JavaScript の例外 "property is non-configurable and can't be deleted" は、プロパティを削除しようとしたが、そのプロパティが<a
+ href="/ja/docs/Web/JavaScript/Data_structures#properties">構成不可</a>である場合に発生します。</p>
-<pre class="syntaxbox">TypeError: property "x" is non-configurable and can't be deleted. (Firefox)
+<h2 id="Message">エラーメッセージ</h2>
+
+<pre class="brush: js">TypeError: Calling delete on 'x' is not allowed in strict mode (Edge)
+TypeError: property "x" is non-configurable and can't be deleted. (Firefox)
TypeError: Cannot delete property 'x' of #&lt;Object&gt; (Chrome)
</pre>
-<h2 id="エラータイプ">エラータイプ</h2>
+<h2 id="Error_type">エラーの種類</h2>
<p>strict モードでのみ、{{jsxref("TypeError")}} の警告が出ます。</p>
-<h2 id="何がうまくいかなかったのか?">何がうまくいかなかったのか?</h2>
+<h2 id="What_went_wrong">エラーの原因</h2>
+
+<p>プロパティを削除しようとしましたが、プロパティが <a href="/ja/docs/Web/JavaScript/Data_structures#properties">non-configurable</a> でした。<code>configurable</code> 属性は、オブジェクトからプロパティを削除できるかどうか、および (<code>writable</code> を除く) 属性を変更できるかどうかを制御します。</p>
-<p>プロパティを削除しようとしましたが、プロパティが <a href="/ja/docs/Web/JavaScript/Data_structures#Properties">non-configurable</a> でした。<code>configurable</code> 属性は、オブジェクトからプロパティを削除できるかどうか、および(<code>writable</code> を除く)属性を変更できるかどうかを制御します。</p>
+<p>このエラーは、<a href="/ja/docs/Web/JavaScript/Reference/Strict_mode">strict モードのコード</a> でのみ発生します。非 strict コードでは、この操作は <code>false</code> を返します。</p>
-<p>このエラーは、<a href="/en-US/docs/Web/JavaScript/Reference/Strict_mode">strict モードのコード</a> でのみ発生します。非 strict コードでは、この操作は <code>false</code> を返します。</p>
+<h2 id="Examples">例</h2>
-<h2 id="例">例</h2>
+<h3 id="Attempting_to_delete_non-configurable_properties">構成不可のプロパティに対する削除の試み</h3>
-<p>non-configurable プロパティは、さほど一般的ではありませんが、{{jsxref("Object.defineProperty()")}} か {{jsxref("Object.freeze()")}} を使用して生成できます。</p>
+<p>構成不可のプロパティは、さほど一般的ではありませんが、{{jsxref("Object.defineProperty()")}} か {{jsxref("Object.freeze()")}} を使用して生成することができます。</p>
-<pre class="brush: js example-bad">"use strict";
-var obj = Object.freeze({name: "Elsa", score: 157});
+<pre class="brush: js example-bad">'use strict';
+var obj = Object.freeze({name: 'Elsa', score: 157});
delete obj.score; // TypeError
-"use strict";
+'use strict';
var obj = {};
-Object.defineProperty(obj, "foo", {value: 2, configurable: false});
+Object.defineProperty(obj, 'foo', {value: 2, configurable: false});
delete obj.foo; // TypeError
-"use strict";
+'use strict';
var frozenArray = Object.freeze([0, 1, 2]);
frozenArray.pop(); // TypeError
</pre>
-<p>JavaScript に組み込まれた、少数の non-configurable プロパティもあります。もしかしたら、Math の定数を削除しようとしたのかもしれません。</p>
+<p>JavaScript に組み込まれた、少数の構成不可プロパティもあります。もしかしたら、Math の定数を削除しようとしたのかもしれません。</p>
-<pre class="brush: js example-bad">"use strict";
+<pre class="brush: js example-bad">'use strict';
delete Math.PI; // TypeError</pre>
-<h2 id="関連項目">関連項目</h2>
+<h2 id="See_also">関連情報</h2>
<ul>
<li><a href="/ja/docs/Web/JavaScript/Reference/Operators/delete">delete</a></li>