Source: https://github.com/getify/You-Dont-Know-JS/blob/master/up%20&%20going/ch2.md#equality
False Values in JS
""
(empty string)0
,-0
,NaN
(invalidnumber
)null
,undefined
Simple Rules Using ==, ===
- If either value (aka side) in a comparison could be the
true
orfalse
value, avoid==
and use===
. - If either value in a comparison could be of these specific values (
0
,""
, or[]
-- empty array), avoid==
and use===
. - In all other cases, you‘re safe to use
==
. Not only is it safe, but in many cases it simplifies your code in a way that improves readability.
Object(including function, array) Comparsion
Because those values are actually held by reference, both ==
and ===
comparisons will simply check whether the references match, not anything about the underlying values.
array
s are by default coerced to string
s by simply joining all the values with commas (,
) in between.
var a = [1,2,3]; var b = [1,2,3]; var c = "1,2,3"; a == c; // true b == c; // true a == b; // false
Inequality
string
values can also be compared for inequality, using typical alphabetic rules ("bar" < "foo"
)
var a = 41; var b = "42"; var c = "43"; a < b; // true b < c; // true
- If both values in the
<
comparison arestring
s, as it is withb < c
, the comparison is made lexicographically.
- But if one or both is not a
string
, as it is witha < b
, then both values are coerced to benumber
s, and a typical numeric comparison occurs.
var a = 42; var b = "foo"; a < b; // false a > b; // false a == b; // false
b
value is being coerced to the "invalid number value"NaN
in the<
and>
comparisons.NaN
is neither greater-than nor less-than, equal-to any other value. Hence, it returns false.
Source:http://www.ecma-international.org/ecma-262/5.1/
The comparison x == y, where x and y are values, produces true or false. Such a comparison is performed as follows:
- If Type(x) is the same as Type(y), then
- If Type(x) is Undefined, return true.
- If Type(x) is Null, return true.
- If Type(x) is Number, then
- If x is NaN, return false.
- If y is NaN, return false.
- If x is the same Number value as y, return true.
- If x is +0 and y is −0, return true.
- If x is −0 and y is +0, return true.
- Return false.
- If Type(x) is String, then return true if x and y are exactly the same sequence of characters (same length and same characters in corresponding positions). Otherwise, return false.
- If Type(x) is Boolean, return true if x and y are both true or both false. Otherwise, return false.
- Return true if x and y refer to the same object. Otherwise, return false.
- If x is null and y is undefined, return true.
- If x is undefined and y is null, return true.
- If Type(x) is Number and Type(y) is String,
return the result of the comparison x == ToNumber(y). - If Type(x) is String and Type(y) is Number,
return the result of the comparison ToNumber(x) == y. - If Type(x) is Boolean, return the result of the comparison ToNumber(x) == y.
- If Type(y) is Boolean, return the result of the comparison x == ToNumber(y).
- If Type(x) is either String or Number and Type(y) is Object,
return the result of the comparison x == ToPrimitive(y). - If Type(x) is Object and Type(y) is either String or Number,
return the result of the comparison ToPrimitive(x) == y. - Return false.
The comparison x === y, where x and y are values, produces true or false. Such a comparison is performed as follows:
- If Type(x) is different from Type(y), return false.
- If Type(x) is Undefined, return true.
- If Type(x) is Null, return true.
- If Type(x) is Number, then
- If x is NaN, return false.
- If y is NaN, return false.
- If x is the same Number value as y, return true.
- If x is +0 and y is −0, return true.
- If x is −0 and y is +0, return true.
- Return false.
- If Type(x) is String, then return true if x and y are exactly the same sequence of characters (same length and same characters in corresponding positions); otherwise, return false.
- If Type(x) is Boolean, return true if x and y are both true or both false; otherwise, return false.
- Return true if x and y refer to the same object. Otherwise, return false.
时间: 2024-10-12 12:41:19