Help for this page

Select Code to Download


  1. or download this
    if (($a == 3) || ($a ==  77) || ($a == 8))
    -- is equivalent to --
    if (($a != 3) && ($a !=  77) && ($a != 8))
    
  2. or download this
    if (($a == 3) || ($a ==  77) || ($a == 8))
    -- is equivalent to --
    if (!( ($a != 3) && ($a !=  77) && ($a != 8) ))