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