I'm currently learning JavaScript and I am really confused about this.
Can anyone explain how this is possible :
"" || "word" // -> "word"
("word") && true // -> true
("" || "word") == true // -> false
I have tried to search online but can't find the proper words to describe my problem.
1. Question 1
As described in the documentation on
||
:In this case, the first expression
""
is falsy, so the second term is the outcome of the expression. If the first expression would have been truthy, the second term would not have been evaluated, and the first one would be returned.2. Question 2
As described in the documentation on
&&
:Here the first expression is truthy and so JavaScript returns the last one. If the first one would have been falsy, the return value would have been the first term.
3. Question 3
As per the first expression outcome, this is equivalent to:
With the
==
operator the coercion happens differently.true
is coerced into a string value, i.e."1"
, which evidently is not the same as"word"
. If the first term would have been"1"
or just 1, it would have yieldedtrue
:Practical use
If you have a condition like the last one, just write it without the comparison:
Or if you really need
true
as the result, convert it explicitly to boolean with!!
: