Help for this page

Select Code to Download


  1. or download this
    if (not B) {
       A 
    ...
          undef
       }
    }
    
  2. or download this
    (not B and A)
    or
    ...
       or
       (not (E and F) and undef)
    ))
    
  3. or download this
    (not B and A) or (B and E and F and C and D)
    
  4. or download this
    For convertion to single expressions:
    if (A) { B } else { C } === (A and B) or (not A and C)
    ...
    For simplification:
    X and undef === undef
    X or undef  === X