IF Statement Worksheet
Question 1
Why is an IF statement known as a control structure?
Becuase it controls which code is being executed
Question 2
There are other control structures in JavaScript that we'll be learning about soon. Use your google skills to look up the other control structures in JavaScript and list them below.
If Statments, If-Else Statement, Switch Statements, Ternary Operator, Loops
Question 3
What is a boolean expression?
A variable that is either always true or always false
Question 4
What is the 'equality operator', and what is it used for? How is it different from the assignment operator?
it is a double equal sign.
assignment operator is when were assinging something a value where equality operator is when it is equal to a value.
assignment operator is when were assinging something a value where equality operator is when it is equal to a value.
Question 5
Why is it important to properly indent your code when writing IF statements?
so that the code is not only readable but also works
Question 6
What is a code block in JavaScript?
it is currly braces
Coding Problems
Coding Problems - See the 'script' tag below this h3 tag. You will have to write some JavaScript code in it.
Always test your work! Check the console log to make sure there are no errors.