If statement
performs a task based on a condition
else statement
an addendum to an if statement which runs if the condition is not met
Logical operator
&&, || and !
Logical operator !
the NOT operator. can be used to:
What are these, , ,=…
comparison operators
else if
Allows for additional conditions to the if…else statement.
Switch statement
condensed else if
Condition followed by a ? operator, then two expressions seperated by a :.
Ternary operator,