Solution Review: Using Multiple Operators
In the following lesson, we will go over the solution of the challenge: Using Multiple Operators.
Task
In this challenge, you were provided with a variable that stored a number and you were asked to check if the number lies between 8 and 75, inclusive of 8.
In other words, check
>= 8 and check
< 75.
Solution
Let’s look ...