admin管理员组文章数量:1347408
I always thought that an if statement essentially pared it's argument similar to == true
. However the following experiment in Firebug confirmed my worst fears—after writing Javascript for 15 years I still have no clue WTF is going on:
>>> " " == true
false
>>> if(" ") console.log("wtf")
wtf
My worldview is in shambles here. I could run some experiments to learn more, but even then I would be losing sleep for fear of browser quirks. Is this in a spec somewhere? Is it consistent cross-browser? Will I ever master javascript?
I always thought that an if statement essentially pared it's argument similar to == true
. However the following experiment in Firebug confirmed my worst fears—after writing Javascript for 15 years I still have no clue WTF is going on:
>>> " " == true
false
>>> if(" ") console.log("wtf")
wtf
My worldview is in shambles here. I could run some experiments to learn more, but even then I would be losing sleep for fear of browser quirks. Is this in a spec somewhere? Is it consistent cross-browser? Will I ever master javascript?
Share Improve this question asked Oct 23, 2009 at 21:23 gtdgtd 17.3k6 gold badges51 silver badges65 bronze badges 1- bizarre, I'm curious to see the answers – theraccoonbear Commented Oct 23, 2009 at 21:26
5 Answers
Reset to default 7"If the two operands are not of the same type, JavaScript converts the operands then applies strict parison. If either operand is a number or a boolean, the operands are converted to numbers; if either operand is a string, the other one is converted to a string."
https://developer.mozilla/en/Core_JavaScript_1.5_Reference/Operators/Comparison_Operators
So the first one does:
Number(" ")==Number(true)
While the second one is evaluated like this:
if(Boolean(" ")==true) console.log("wtf")
I am guessing that it is the first part that is a problem, not the second.
It probably does some weird casting (most likely, true
is cast to a string instead of " "
being cast to a boolean value.
What does FireBug return for Boolean(" ")
?
JavaScript can be quirky with things like this. Note that JavaScript has ==
but also ===
. I would have thought that
" " == true
would be true
, but
" " === true
would be false
. The ===
operator doesn't do conversions; it checks if the value and the type on both sides of the operator are the same. The ==
does convert 'truthy' values to true and 'falsy' values to false.
This might be the answer - from JavaScript Comparison Operators (Mozilla documentation):
Equal (==)
If the two operands are not of the same type, JavaScript converts the operands then applies strict parison. If either operand is a number or a boolean, the operands are converted to numbers; if either operand is a string, the other one is converted to a string
Highly remended: Douglas Crockford on JavaScript.
Answer: aTruthyValue and true are not the same.
The semantic of the if statement is easy:
if(aTruthyValue) {
doThis
} else {
doThat
}
Now it's just the definition of what a truthy value is. A truthy value is, unfortunately, not something that is simply "== true" or "=== true".
ECMA-262 1.5 Setion 9.2 explains what values are truthy and which are not.
I remend using === whenever possible, if only to avoid having existential crises.
本文标签: What Are the Semantics of Javascripts If StatementStack Overflow
版权声明:本文标题:What Are the Semantics of Javascripts If Statement - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743836874a2547564.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论