aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript/guide/keyed_collections/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/javascript/guide/keyed_collections/index.html')
-rw-r--r--files/ja/web/javascript/guide/keyed_collections/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/javascript/guide/keyed_collections/index.html b/files/ja/web/javascript/guide/keyed_collections/index.html
index fbc979ab2b..2888204bca 100644
--- a/files/ja/web/javascript/guide/keyed_collections/index.html
+++ b/files/ja/web/javascript/guide/keyed_collections/index.html
@@ -112,7 +112,7 @@ for (let item of mySet) console.log(item);
<h3 id="Converting_between_Array_and_Set" name="Converting_between_Array_and_Set"><code>Array</code> と <code>Set</code> 間の変換</h3>
-<p>{{jsxref("Array.from")}} または <a href="https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Operators/Spread_operator">スプレッド構文</a> を使用して <code>Set</code> から {{jsxref("Array")}} を生成できます。また、<code>Set</code> コンストラクタを使って <code>Array</code> から <code>Set</code> へと逆変換することができます。</p>
+<p>{{jsxref("Array.from")}} または <a href="/ja/docs/Web/JavaScript/Reference/Operators/Spread_operator">スプレッド構文</a> を使用して <code>Set</code> から {{jsxref("Array")}} を生成できます。また、<code>Set</code> コンストラクタを使って <code>Array</code> から <code>Set</code> へと逆変換することができます。</p>
<div class="blockIndicator note">
<p><strong>注:</strong> <code>Set</code> オブジェクトは<em>一意の値</em>を格納することにくれぐれも注意してください、重複した要素は <code>Array</code> から変換するときに削除されます。</p>