You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. If Type(_x_) is different from Type(_y_), return *false*.
6055
6017
1. If Type(_x_) is Number, then
6056
6018
1. Return Number::sameValue(_x_, _y_).
6057
-
1. If Type(_x_) is BigInt, then
6058
-
1. Return BigInt::sameValue(_x_, _y_).
6059
-
1. Return SameValueNonNumeric(_x_, _y_).
6019
+
1. Return SameValueNonNumber(_x_, _y_).
6060
6020
</emu-alg>
6061
6021
<emu-note>
6062
6022
<p>This algorithm differs from the IsStrictlyEqual Algorithm by treating all *NaN* values as equivalent and by differentiating *+0*<sub>𝔽</sub> from *-0*<sub>𝔽</sub>.</p>
@@ -6078,26 +6038,26 @@ <h1>
6078
6038
1. If Type(_x_) is different from Type(_y_), return *false*.
6079
6039
1. If Type(_x_) is Number, then
6080
6040
1. Return Number::sameValueZero(_x_, _y_).
6081
-
1. If Type(_x_) is BigInt, then
6082
-
1. Return BigInt::sameValueZero(_x_, _y_).
6083
-
1. Return SameValueNonNumeric(_x_, _y_).
6041
+
1. Return SameValueNonNumber(_x_, _y_).
6084
6042
</emu-alg>
6085
6043
<emu-note>
6086
6044
<p>SameValueZero differs from SameValue only in that it treats *+0*<sub>𝔽</sub> and *-0*<sub>𝔽</sub> as equivalent.</p>
<p>This method returns *true* if the sequence of code units of _searchString_ converted to a String is the same as the corresponding code units of this object (converted to a String) starting at _endPosition_ - length(this). Otherwise it returns *false*.</p>
<p>This method returns *true* if the sequence of code units of _searchString_ converted to a String is the same as the corresponding code units of this object (converted to a String) starting at index _position_. Otherwise it returns *false*.</p>
0 commit comments