As you saw in the video there are a bunch of terms that generally are all talking about the same thing.
Boolean, Boolean values, Boolean expressions:
Condition, Conditionals, Conditional Statements:
if
statement)A common type of condition to check is a comparison of two values. Here are 6 common comparison operators. Each compares a value on the left with a value on the right and returns a Boolean value -- true or false. Most of these do what you would expect.
We use ==
because the single equal sign =
is the assignment operator. We need something different to indicate we want to compare two values instead of assign one to the other.
Common mistake: writing something like if (age = 18)
instead of if (age == 18)
. We'll make sure we get this down later.
We use !=
, <=
, and >=
because they only require ASCII symbols. Historically the mathematical symbols ≠
, ≤
and ≥
were hard or impossible to produce on some systems. The !
is universally read as "not".
Below are a bunch of examples of how you might see comparisons in code. Review them if you like or continue on and come back if you need reference.
Compares two values - numbers, strings, or other booleans - and returns true if they are equal, otherwise false.
"Hello" == "hello"
returns false -- because the strings are are capitalized differently."3" == 3
returns true -- because ==
tries to be forgiving. If it can "coerce" a string into a number it will do so to compare. 1 (2+1) == 3
returns true -- because the arithmetic expression evaluates to 3.x == 7
returns true -- when the variable x has the value 7.1. While it is a useful feature that ==
will coerce a string into a number, it is considered TRICKY because the string "3" is not the same as the integer 3. There are times when you would believe these are not equal. There is a "strict" equality operator - the "triple equal" ===
which makes sure that both the type of data and value are equal. So "3" === 3
is false.
Compares two values - numbers, strings, or other booleans - and returns true
if they are not equal, otherwise false
.
"Hello" != "hello"
returns true -- because the strings are slightly different."3" != 3
returns false -- because the string 3 can be coerced into a number before comparing with 3. (see notes above about the forgiving ==).(2+1) != 3
returns false -- because the arithmetic expression evaluates to 3.x != 7
returns true -- when the variable x is any value other than 7.Compares two values to see if the number on the left is greater than the number on the right.
4 > 3
returns true3 > 7
returns falseage > 17
returns true -- when the value of the variable "age" is strictly greater than 17, otherwise false.Compares two values to see if the number on the left is less than the number on the right.
4 < 3
returns false3 < 7
returns trueage < 17
returns true -- when the value of the variable "age" is strictly less than 17, otherwise false.Compares two values to see if the number on the left is less than or equal to the number on the right.
3 <= 4
returns true4 <= 3
returns falseage <= 18
returns true -- when the value of the variable "age" is 18 or less.Compares two values to see if the number on the left is greater than or equal to the number on the right.
3 >= 4
returns false4 >= 3
returns trueage >= 18
returns true -- when the value of the variable "age" is 18 or greater.Found a bug in the documentation? Let us know at documentation@code.org