logical AND in javascrip represents
Answers
Answered by
1
Answer:
&& (AND) Logical Operator
The logical operator is used with two or more values (operands), and only evaluates to true if all the operands are truthy. The value returned will be the last truthy value if they are all true, but it will return the first falsy value if at least one value is false.
Similar questions