Logical OR (||) (Operator/logical)

Logical OR of two operands.

Availability:

ECMAScript edition - 2
JavaScript - 1.0
JScript - 1.0
Internet Explorer - 3.02
Netscape - 2.0
Netscape Enterprise Server - 2.0
Opera - 3.0
Property/method value type:Boolean primitive
JavaScript syntax:-anOperand1 || anOperand2
Argument list:anOperand1A Boolean value
anOperand2Another Boolean value

Traditionally in programming environments, the logical OR operator yields true when either or both of the operands are true. It yields false only when both are false. However, the specifics of this are slightly different in JavaScript and although the results may appear to be functionally the same, there is a subtle but important difference.

First, lets deal with the normal and expected behavior of a Logical OR operator. The truth table shows the result of this operator for two Boolean primitive values:

ABOR
falsefalsefalse
falsetruetrue
truefalsetrue
truetruetrue

Now, the implementation is expected to conform to the ECMA standard. This sets out the following method of evaluation for a Logical OR operator:

To all intents and purposes the external perceived behavior is the same because another ToBoolean() conversion is likely to take place in the context that the expression is used - an if() statement or an outer logical expression for example.

The associativity is from left to right.

Refer to the operator precedence topic for details of execution order.

Example code:

   <HTML>

   <HEAD></HEAD>

   <BODY>

   <TABLE BORDER=1 CELLPADDING=2>

   <TR>

   <TH>A</TH>

   <TH>B</TH>

   <TH>OR</TH>

   </TR>

   <SCRIPT>

   for(a=0; a<2; a++)

   {

      for(b=0; b<2; b++)

      {

         document.write("<TR ALIGN=CENTER><TD>");

         document.write(Boolean(a));

         document.write("</TD><TD>");

         document.write(Boolean(b));

         document.write("</TD><TD>");

         document.write(Boolean(a || b));

         document.write("</TD></TR>");

      }

   }

   </SCRIPT>

   </TABLE>

   </BODY>

   </HTML>

See also:Associativity, Binary logical operator, Logical operator, Operator Precedence

Cross-references:

ECMA 262 edition 2 - section - 11.11

ECMA 262 edition 3 - section - 11.11