Skip to content

Commit b9a961d

Browse files
authored
Update JavaScript equality algorithm references
Follows tc39/ecma262#2378.
1 parent ec4196a commit b9a961d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

source

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2949,8 +2949,8 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
29492949
<li>The <dfn data-x-href="https://tc39.es/ecma262/#sec-touint32">ToUint32</dfn> abstract operation</li>
29502950
<li>The <dfn data-x-href="https://tc39.es/ecma262/#typedarray-create">TypedArrayCreate</dfn> abstract operation</li>
29512951

2952-
<li>The <dfn data-x="js-abstract-equality" data-x-href="https://tc39.es/ecma262/#sec-abstract-equality-comparison">Abstract Equality Comparison</dfn> algorithm</li>
2953-
<li>The <dfn data-x="js-strict-equality" data-x-href="https://tc39.es/ecma262/#sec-strict-equality-comparison">Strict Equality Comparison</dfn> algorithm</li>
2952+
<li>The <dfn data-x="js-abstract-equality" data-x-href="https://tc39.es/ecma262/#sec-islooselyequal">IsLooselyEqual</dfn> abstract operation</li>
2953+
<li>The <dfn data-x="js-strict-equality" data-x-href="https://tc39.es/ecma262/#sec-isstrictlyequal">IsStrictlyEqual</dfn> abstract operation</li>
29542954
<li>The <dfn data-x-href="https://tc39.es/ecma262/#sec-atomics-object"><code>Atomics</code></dfn> object</li>
29552955
<li>The <dfn data-x-href="https://tc39.es/ecma262/#sec-date-objects"><code>Date</code></dfn> class</li>
29562956
<li>The <dfn data-x-href="https://tc39.es/ecma262/#sec-finalization-registry-objects"><code>FinalizationRegistry</code></dfn> class</li>
@@ -8048,11 +8048,11 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
80488048
<li><p>The <span data-x="js-ToBoolean">ToBoolean</span> abstract operation in JavaScript returns
80498049
false when given objects implementing the <code>HTMLAllCollection</code> interface.</p></li>
80508050

8051-
<li><p>The <span data-x="js-abstract-equality">Abstract Equality Comparison</span> algorithm,
8051+
<li><p>The <span data-x="js-abstract-equality">IsLooselyEqual</span> abstract operation,
80528052
when given objects implementing the <code>HTMLAllCollection</code> interface, returns true when
80538053
compared to the <code data-x="">undefined</code> and <code data-x="">null</code> values.
8054-
(Comparisons using the <span data-x="js-strict-equality">Strict Equality Comparison</span>
8055-
algorithm, and Abstract Equality comparisons to other values such as strings or objects, are
8054+
(Comparisons using the <span data-x="js-strict-equality">IsStrictlyEqual</span> abstract
8055+
operation, and IsLooselyEqual comparisons to other values such as strings or objects, are
80568056
unaffected.)</p></li>
80578057

80588058
<li><p>The <code data-x="js-typeof">typeof</code> operator in JavaScript returns the string

0 commit comments

Comments
 (0)