state the difference between the logical AND and the logical OR operator.
Answers
Answered by
1
Answer:
&& (and) — This operator will be truthy (act like true ) if and only if the expressions on both sides of it are true. || (or) — This operator will be truthy if the expression on either side of it is true. Otherwise, it will be falsy (act like false ).
Similar questions