Comparsion in JavaScript
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
trueorfalsevalue, 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.
arrays are by default coerced to strings 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
stringvalues 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 arestrings, 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 benumbers, and a typical numeric comparison occurs.
var a = 42; var b = "foo"; a < b; // false a > b; // false a == b; // false
bvalue is being coerced to the "invalid number value"NaNin the<and>comparisons.NaNis 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.
浙公网安备 33010602011771号