Description
Return true when the both operands are true.
Example Code
if (pushButton1 && pushButton2){ //see if the button1 and the button2 are pushed at the same time.digitalWrite(13, HIGH); //if true, turn on the LED} else {digitalWrite(13, LOW); //if false, turn off the LED}