The following shows that "0" is false in Javascript:
>>> "0" == false
true
>>> false == "0"
true
So why does the following print "ha"?
>>> if ("0") console.log("ha")
ha
|
The following shows that
So why does the following print
| ||||
|
show 3 more comments
feedback
|
|
The reason is because when you explicitly do "0" == false, both sides are being converted to numbers and then the comparison is performed. When you do: if ("0") console.log("ha"), the string value is being tested. Any non-empty string is true, while an empty string is false. From https://developer.mozilla.org/en/JavaScript/Reference/Operators/Comparison_Operators Equal (==) : If the two operands are not of the same type, JavaScript converts the operands then applies strict comparison. If either operand is a number or a boolean, the operands are converted to numbers if possible; else if either operand is a string, the other operand is converted to a string if possible. If both operands are objects, then JavaScript compares internal references which are equal when operands refer to the same object in memory. | ||||
|
feedback
|
|
Tables displaying the issue:
and ==
Moral of the story use ===
table generation credit: https://github.com/dorey/JavaScript-Equality-Table | |||||||||||||||||||
feedback
|
|
It's according to spec. 12.5 The if Statement ..... 2. If ToBoolean(GetValue(exprRef)) is true, then a. Return the result of evaluating the first Statement. 3. Else, .... ToBoolean, according to the spec, is
And that table says this about strings:
Now, to explain why Which describes this relevant part as: if IsPropertyReference(V), then a. If HasPrimitiveBase(V) is false, then let get be the [[Get]] internal method of base, otherwise let get be the special [[Get]] internal method defined below. b. Return the result of calling the get internal method using base as its this value, and passing GetReferencedName(V) for the argument Or in other words, a string has a primitive base, which calls back the internal get method and ends up looking false. If you want to evaluate things using the GetValue operation use | |||||||
feedback
|
|
When running an
| |||||||||
feedback
|
|
It's PHP where the string The trick is that This is a really poor bit of language design and it's one of the reasons we try not to use the unfortunate | |||
|
feedback
|
|
Your quotes around the Remove the quotes and it should work.
| |||||
feedback
|
|
It is all because of the ECMA specs ... | |||||
feedback
|
|
The "if" expression tests for truthiness, while the double-equal tests for type-independent equivalency. A string is always truthy, as others here have pointed out. If the double-equal were testing both of its operands for truthiness and then comparing the results, then you'd get the outcome you were intuitively assuming, i.e. | |||
|
feedback
|
coerces x using JavaScript's internal toBoolean (http://es5.github.com/#x9.2)
coerces both sides using internal toNumber coercion (http://es5.github.com/#x9.3) or toPrimitive for objects (http://es5.github.com/#x9.1) For full details see http://javascriptweblog.wordpress.com/2011/02/07/truth-equality-and-javascript/ | |||
|
feedback
|
"0"is a string, and since it's not empty, it's evaluated to true. – Digital Plane Sep 30 '11 at 19:36"0" === false [...] false– Matt McDonald Sep 30 '11 at 19:36'0'==falsebut '0' is not a falsey value (yes Javascript can be weird) – Linsey Sep 30 '11 at 23:25==, they never get converted to booleans, so it doesn't apply. (The rules for the conversion seem to favour converting to numbers.) – Inerdial Oct 1 '11 at 0:56