Javascript: Logical Operators
Logical operators allow us to compare the relationship between two operands. We can find out if on variable is equal to another, less than another ect.
/*
equal to
==
not equal to
!=
less than
<
greater than
<
less than or equal to
<=
greater than or equal to
>=
and
&&
or
||
*/