The && operator is known as the logical and and helps us to make multiple comparisons. It only returns true if both expressions are true.

Can you ensure this code prints true?

See that? If all expressions are true, the result is true. If any are false the result is false. We can use this for any number of expressions, not just two!

Are you sure the && operator would evaluate to true with these values?