Skip to content

Commit

Permalink
Update JavaScript equality algorithm references
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdyck committed Oct 20, 2022
1 parent ec4196a commit b9a961d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -2949,8 +2949,8 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
<li>The <dfn data-x-href="https://tc39.es/ecma262/#sec-touint32">ToUint32</dfn> abstract operation</li>
<li>The <dfn data-x-href="https://tc39.es/ecma262/#typedarray-create">TypedArrayCreate</dfn> abstract operation</li>

<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>
<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>
<li>The <dfn data-x="js-abstract-equality" data-x-href="https://tc39.es/ecma262/#sec-islooselyequal">IsLooselyEqual</dfn> abstract operation</li>
<li>The <dfn data-x="js-strict-equality" data-x-href="https://tc39.es/ecma262/#sec-isstrictlyequal">IsStrictlyEqual</dfn> abstract operation</li>
<li>The <dfn data-x-href="https://tc39.es/ecma262/#sec-atomics-object"><code>Atomics</code></dfn> object</li>
<li>The <dfn data-x-href="https://tc39.es/ecma262/#sec-date-objects"><code>Date</code></dfn> class</li>
<li>The <dfn data-x-href="https://tc39.es/ecma262/#sec-finalization-registry-objects"><code>FinalizationRegistry</code></dfn> class</li>
Expand Down Expand Up @@ -8048,11 +8048,11 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
<li><p>The <span data-x="js-ToBoolean">ToBoolean</span> abstract operation in JavaScript returns
false when given objects implementing the <code>HTMLAllCollection</code> interface.</p></li>

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

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

0 comments on commit b9a961d

Please sign in to comment.