Operators Worksheet

Question 1

What are the comparison operators used for?

They are used to compare values, hence the term. They in turn come up with a boolean answer, which makes them useful for IF statements.

Question 2

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

The OR operator checks if one of two expressions are true. The AND operator checks if both are simultaneously true.

Question 3

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

That would be the modulus (%).

Question 4

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

That would be the inequality 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.