19.
What is the result of the following expression?
5 > 3 && 10 < 8
true
false
SyntaxError
ReferenceError
Correct: B
The expression 5 > 3 is true because 5 is indeed greater than 3. However, the expression 10 < 8 is false since 10 is not less than 8. The logical AND operator (&&) requires both expressions to be true for the overall expression to be true. Since one of the expressions is false, the result of the expression 5 > 3 && 10 < 8 is false.