Operators Worksheet

Question 1

What are the comparison operators used for?

Comparison operators are for compairing two different vaules

Question 2

Explain the difference between the logical AND operator (&&) and the logical OR operator (||).

Both evaluate from left to right while or looks for the first truthy, AND looks for the first false. Both will spit out the last value if all are the opposite.

Question 3

Which operator would you use to find the remainder from dividing 2 numbers.

The remainder opterator %.

Question 4

Which operator would you use if you wanted to find out if two values were NOT equal?

The not equal operator !==

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.