Description
Return true when either of the two operands is true.
Example Code
if (pushButton1 || pushButton2){ //see if either of the button1 or the button2 are pushed.digitalWrite(13, HIGH); //if true, turn on the LED} else {digitalWrite(13, LOW); //if false, turn off the LED}