Almighty Gurus, Please tell me, I want to know can comparison sm. set of variables in row, like this:
x < y >= z
or i need to do it in two steps?
(x < y) && (y >= z)
Almighty Gurus, Please tell me, I want to know can comparison sm. set of variables in row, like this:
x < y >= z
or i need to do it in two steps?
(x < y) && (y >= z)
In Javascript, you must do this type of comparison in two steps.
Python is the only widely used language I'm aware of that allows the first form (please comment if I'm incorrect).