Dual or triple (or even multiple) comparison in JavaScript
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).
You can only do the latter in Javascript:
(x < y) && (y >= z)