What is the difference between if (!x) and if (x == null); that is, when can their results be different?
|
|
|||
|
Try with You can say that the NOT operator In addition, if you compare values with Something to read: Update: For more information about the non-strict comparison of
|
|||||||||
|
|
The results can be different if x is false, NaN, '' (empty string), undefined (using the strict comparison operator ===), or 0 (zero). See Felix Kling's answer for an excellent summary of type comparison. |
|||||
|
|
Say x is a string.
You'll notice that "X is not a truthy value" is shown in all three cases, but only in the case of X being undefined or null is "X is null" shown. When X is a boolean value, then See it in action, including the difference between |
||||
|
|
|
|
|||
|
|
coerces x uses the internal ToBoolean function
coerces both operands using the internal ToPrimitive function (which generally resolves each side to a number, occasionally a string, depending on the operands) For full explanantion of ToBoolean vs ToPrimitive see http://javascriptweblog.wordpress.com/2011/02/07/truth-equality-and-javascript/ |
|||
|
|
'a' == falseand'a' == truearefalse=) Yeah. Go figure. – Rudie May 2 '11 at 23:52