Conditional Statement
Conditional Statement: part of programming that allows the program to
make a decision
The statement with the keyword if
and then a condition is specified within a pair of parenthesis. A
keyword is recognized as part of a language definition. Examples: if,
else, and return.
A condition is followed by a statement block that consists of:
-an opening brace {
-one or more JavaScript statements
-a closing brace }
Below is the shell of a Java Script statement that supportsanotional else
clause

Below is a JavaScript that utilizes the else condition. This
defines what action to take if a condition is not met
