showing results for - "5 3 1 1 logical and c2 b6"
Rania
25 Aug 2018
1/*The operator takes two operands, and the resulting expression is 
2true if both operands are true individually. If either operand is 
3false, the overall expression is false.*/
4
5console.log(7 > 5 && 5 > 3);
6console.log(7 > 5 && 2 > 3);
7console.log(2 > 3 && 'dog' === 'cat');
8
9//true
10//false
11//false
similar questions
queries leading to this page
5 3 1 1 logical and c2 b6