aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
Diffstat (limited to 'files')
-rw-r--r--files/zh-cn/web/javascript/guide/keyed_collections/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/javascript/guide/keyed_collections/index.html b/files/zh-cn/web/javascript/guide/keyed_collections/index.html
index 0c10c93c2a..bb735f4205 100644
--- a/files/zh-cn/web/javascript/guide/keyed_collections/index.html
+++ b/files/zh-cn/web/javascript/guide/keyed_collections/index.html
@@ -144,7 +144,7 @@ mySet2 = new Set([1,2,3,4]);
<h2 id="Map的键和Set的值的等值判断"><code>Map</code>的键和<code>Set</code>的值的等值判断</h2>
-<p><code>Map</code>的键和<code>Set</code>的值的等值判断都基于<a href="https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero">same-value-zero algorithm</a>:</p>
+<p><code>Map</code>的键和<code>Set</code>的值的等值判断都基于<a href="https://tc39.es/ecma262/#sec-samevaluezero">same-value-zero algorithm</a>:</p>
<ul>
<li>判断使用与<code>===</code>相似的规则。</li>