+ 1
What does && mean
very weird
4 Answers
+ 4
it is AND operator and it returns true only if all operands are true.
ex: a1 and a2 and a3 ..it will be true only if a1, a2, a3 all are true.
comment if you still didn't understand.
+ 2
In addition to @Raj Kumar Chauhan: && (and also ||) are evaluated as a "short circuit" procedure: if you have something like "b1 && b2 && b3 &&...", this will evaluate to false as soon as one of the b1, b2, b3... is false. Similarly, "b1 || b2 || b3 ||..." will evaluate to true as soon as one of the b1, b2, b3... is true.
+ 2
Thank you!!
0
it means and