Why should we use relational operators with numbers where we could simply give it a true or false value?
Example:
w/ operators >>> !( 1 < 8 && (5 > 2 || 3 < 5)); <<<<
w/ true or false >>> !true && true || true;
What are the differences?
Could you give me an example where the code w/ operators cannot be replaced by a true or false value?