If I write this piece of code in a textfield if(value < 4)
, my program will generate the following table
value Output
3 True
5 False
The table will dynamically change in size depending on the conditions. The values 3 and 5 were randomly generated.
I'm stuck when it comes to more than one condition.
For example, when it comes to this if (value > 4 && value <= 10)
.
Note: I have functions for each of these conditions: =, <, >, <=, >=, !=
How do I get it to give me a true value that is in the range and a false value?