explain wgicaloperators
Answers
Answered by
1
Answer:
(OR) In classical programming, the logical OR is meant to manipulate boolean values only. If any of its arguments are true, it returns true, otherwise it returns false.
OR "||" finds the first truthy value. The logic described above is somewhat classical. ...
&& (AND)
AND “&&” finds the first falsy value. Evaluates operands from left to right. ...
Explanation:
Similar questions