56
-1 == true;        // false
-1 == false        // false
-1 ? true : false; // true

Can anyone explain the above output? I know I could work round this by comparing to 0 but I'm interested. I'd expect at least one of the sloppy equals statements to be true as they do implicit type conversion, and I certainly didn't expect the ternary to come up with a totally different result.

tanguy_k
  • 8,999
  • 4
  • 46
  • 50
Ollie Edwards
  • 12,080
  • 6
  • 26
  • 33

3 Answers3

71

In the first two cases, the boolean is cast to a number - 1 for true and 0 for false. In the final case, it is a number that is cast to a boolean and any number except for 0 and NaN will cast to true. So your test cases are really more like this:

-1 == 1; // false
-1 == 0; // false
true ? true : false; // true

The same would be true of any number that isn't 0 or 1.

For more detail, read the ECMAScript documentation. From the 3rd edition [PDF], section 11.9.3 The Abstract Equality Comparison Algorithm:

19. If Type(y) is Boolean, return the result of the comparison x == ToNumber(y).

It's worth giving the full algorithm a read because other types can cause worse gotchas.

Community
  • 1
  • 1
Andy E
  • 311,406
  • 78
  • 462
  • 440
  • 2
    One of dynamic typing's fuzzy lines. If you know all the rules it all makes sense. – Matthew Vines Sep 01 '10 at 15:46
  • 1
    Fuzzy line indeed! Use the `Boolean(-1)` for a true cast the way you expect - and discover -1 is still considered true (as in not 0). – Rudu Sep 01 '10 at 15:49
  • These truthy/falsy values in JS (or any other dynamic language) values are just a hindrance more than they are useful; I always now fully compare in my conditionals. – Daniel Sokolowski Nov 20 '14 at 16:05
  • If "any number except for 0 and NaN will cast to true" why does `2 == true` output false ? "2" is a number – jack blank Mar 22 '16 at 16:06
  • 1
    @jackblank read again his first sentence. In your example, `true` is cast to `1`, not `2` is cast to `true` This [blog post](https://javascriptweblog.wordpress.com/2011/02/07/truth-equality-and-javascript/) is worth to read. – Fahmi Sep 02 '16 at 15:39
4

In most systems, non-zero values are considered a true value, but that doesn't necessarily mean that they are the same true value as true. Thus, -1 == true doesn't necessarily hold, but -1 can still be considered a true value since it is non-zero.

Really, though, you shouldn't be comparing integers to booleans if you can avoid it.

Amber
  • 446,318
  • 77
  • 595
  • 531
-2

When evaluated as a test condition, integers like -1, 5 and 17,000,000, all return Boolean true, because they logically evaluate to true, e.g.

if(-1) {
    "This is true";
}
else {
    "This is false";
}
=> "This is true";

(Note: 0 logically evaluates to false)

Using the "?" operator does what this code just does. It passes the first argument as a condition in an if statement, passes the second argument as the true case, and passes the third argument as the false case.

Hence the third result.


However, these integers are not of the same type as true.

True is of type Boolean, -1, 5 and 17,000,000 are of type Integer.

The comparison '==' is strict, in terms of type comparison. Even two things have the same "value", but not the same type, the "==" operator returns false:

if(6 == true) {
    "This is true";
}
else {
    "This is false";
}
=> "This is false";

Even the following will return false, because "true" is of type String and true is of type Boolean:

if("true" == true) {
    "This is true";
}
else {
    "This is false";
}
=> "This is false";

Hence, the first two results.


Note: If you'd like to compare values irregardless of type, use the "===" operator:

if(6 === true) {
    "This is true";
}
else {
    "This is false";
}
=> "This is true";

and also,

if("true" === true) {
    "This is true";
}
else {
    "This is false";
}
=> "This is true";


Hope this helps!

AStanton
  • 35
  • 2
  • 9
  • 1
    The explanations of == vs. === in this answer are incorrect. === is for strict type comparison, while == will attempt to auto-convert types. – cfc Nov 14 '18 at 17:00