Dual or triple (or even multiple) comparison in JavaScript
Posted
by Maxja
on Stack Overflow
See other posts from Stack Overflow
or by Maxja
Published on 2010-05-17T09:18:01Z
Indexed on
2010/05/17
9:20 UTC
Read the original article
Hit count: 196
JavaScript
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 step?
(x < y) && (y >= z)
© Stack Overflow or respective owner