Why don't logical operators (&& and ||) always return a boolean result?

24,846

Solution 1

var _ = ((obj.fn && obj.fn() ) || obj._ || ( obj._ == {/* something */}))? true: false 

will return boolean.

UPDATE

Note that this is based on my testing. I am not to be fully relied upon.

It is an expression that does not assign true or false value. Rather it assigns the calculated value.

Let's have a look at this expression.

An example expression:

var a = 1 || 2;
// a = 1

// it's because a will take the value (which is not null) from left
var a = 0 || 2;
// so for this a=2; //its because the closest is 2 (which is not null)

var a = 0 || 2 || 1;    //here also a = 2;

Your expression:

var _ = (obj.fn && obj.fn() ) || obj._ || ( obj._ = {} );

// _ = closest of the expression which is not null
// in your case it must be (obj.fn && obj.fn())
// so you are gettig this

Another expression:

var a = 1 && 2;
// a = 2

var a = 1 && 2 && 3;
// a = 3 //for && operator it will take the fartest value
// as long as every expression is true

var a = 0 && 2 && 3;
// a = 0

Another expression:

var _ = obj && obj._;

// _ = obj._

Solution 2

In JavaScript, both || and && are logical short-circuit operators that return the first fully-determined “logical value” when evaluated from left to right.

In expression X || Y, X is first evaluated, and interpreted as a boolean value. If this boolean value is “true”, then it is returned. And Y is not evaluated. (Because it doesn’t matter whether Y is true or Y is false, X || Y has been fully determined.) That is the short-circuit part.

If this boolean value is “false”, then we still don’t know if X || Y is true or false until we evaluate Y, and interpret it as a boolean value as well. So then Y gets returned.

And && does the same, except it stops evaluating if the first argument is false.

The first tricky part is that when an expression is evaluated as “true”, then the expression itself is returned. Which counts as "true" in logical expressions, but you can also use it. So this is why you are seeing actual values being returned.

The second tricky part is that when an expression is evaluated as “false”, then in JS 1.0 and 1.1 the system would return a boolean value of “false”; whereas in JS 1.2 on it returns the actual value of the expression.

In JS false, 0, -0, "", null, undefined, NaN and document.all all count as false.

Here I am of course quoting logical values for discussion’s sake. Of course, the literal string "false" is not the same as the value false, and is therefore true.

Solution 3

In the simplest terms:

The || operator returns the first truthy value, and if none are truthy, it returns the last value (which is a falsy value).

The && operator returns the first falsy value, and if none are falsy, it return the last value (which is a truthy value).

It's really that simple. Experiment in your console to see for yourself.

console.log("" && "Dog");    // ""
console.log("Cat" && "Dog"); // "Dog"
console.log("" || "Dog");    // "Dog"
console.log("Cat" || "Dog"); // "Cat"

Solution 4

In most programming languages, the && and || operators returns boolean. In JavaScript it's different.


OR Operator:

It returns the value of the first operand that validates as true (if any), otherwise it returns the value of the last operand (even if it validates as false).

Example 1:

var a = 0 || 1 || 2 || 3;
        ^    ^    ^    ^
        f    t    t    t
             ^
             first operand that validates as true
             so, a = 1

Example 2:

var a = 0 || false || null || '';
        ^    ^        ^       ^
        f    f        f       f
                              ^
                              no operand validates as true,
                              so, a = ''

AND Operator:

It returns the value of the last operand that validates as true (if all conditions validates as true), otherwise it returns the value of the first operand that validates as false.

Example 1:

var a = 1 && 2 && 3 && 4;
        ^    ^    ^    ^
        t    t    t    t
                       ^
                       last operand that validates as true
                       so, a = 4

Example 2:

var a = 2 && '' && 3 && null;
        ^    ^     ^    ^
        t    f     t    f
             ^
             return first operand that validates as false,
             so, a = ''

Conclusion:

If you want JavaScript to act the same way how other programming languages work, use Boolean() function, like this:

var a = Boolean(1 || 2 || 3);// a = true

Solution 5

You should think of the short-circuit operators as conditionals rather than logical operators.

x || y roughly corresponds to:

if ( x ) { return x; } else { return y; }  

and x && y roughly corresponds to:

if ( x ) { return y; } else { return x; }  

Given this, the result is perfectly understandable.


From MDN documentation:

Logical operators are typically used with Boolean (logical) values. When they are, they return a Boolean value. However, the && and || operators actually return the value of one of the specified operands, so if these operators are used with non-Boolean values, they will return a non-Boolean value.

And here's the table with the returned values of all logical operators.

Share:
24,846
theateist
Author by

theateist

Updated on July 09, 2022

Comments

  • theateist
    theateist almost 2 years

    Why do these logical operators return an object and not a boolean?

    var _ = (obj.fn && obj.fn() ) || obj._ || ( obj._ = {} );
    
    var _ = obj && obj._;
    

    I want to understand why it returns result of obj.fn() (if it is defined) OR obj._ but not boolean result.

  • theateist
    theateist about 13 years
    experimentX, I UPDATED my post. It returns one the result of fn or obj._ but not boolean.
  • user1601201
    user1601201 about 10 years
    you can also use !!x to force x to boolean
  • Pointy
    Pointy almost 8 years
    !!condition1 is a much simpler way of getting a boolean true or false from a truthy or falsy result.
  • realtebo
    realtebo over 7 years
    Your answer is really the most simple to understand. Thanks.
  • Turkhan Badalov
    Turkhan Badalov over 6 years
  • Francois Bourgeois
    Francois Bourgeois almost 6 years
    That's all true, but doesn't answer the question. He asked "why".
  • ortonomy
    ortonomy over 3 years
    succinct and useful answer, with links to deeper resources. Would accept.
  • Armando Rodríguez Acosta
    Armando Rodríguez Acosta over 3 years
    Or simply var _ = !!((obj.fn && obj.fn() ) || obj._ || ( obj._ == {/* something */}));