diff options
author | meowmeowmeowcat <meowmeowcat1211@gmail.com> | 2021-08-07 00:55:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-07 00:55:57 +0800 |
commit | 7a6131f4b6e501ed0642ab1c3ff990345002ec07 (patch) | |
tree | 578321e265cf8ba135ce268f1c9873e7f906cc89 /files/zh-cn | |
parent | c11912a01de7a4dc0f4b0699f2cc24cbe2ffdcbd (diff) | |
download | translated-content-7a6131f4b6e501ed0642ab1c3ff990345002ec07.tar.gz translated-content-7a6131f4b6e501ed0642ab1c3ff990345002ec07.tar.bz2 translated-content-7a6131f4b6e501ed0642ab1c3ff990345002ec07.zip |
fix link in Web/JavaScript/Guide/Keyed_collections, zh-CN (#1945)
Diffstat (limited to 'files/zh-cn')
-rw-r--r-- | files/zh-cn/web/javascript/guide/keyed_collections/index.html | 2 |
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> |