What you need to know for Monday's assessment.
true
and false
&&
, ||
, and !
What they do and how to use them in expressions.
()
to deal with order of operations
E.g. (a && b) || c
&&
has higher precedence than ||
just like *
has higher precedence than +
.
<
, >
, <=
, >=
, ===
, and !==
Even if you get stuck on the function syntax, try to write something that looks like a correct expression using meaningful names.
You’ll at least get credit for your understanding of boolean expressions.