SyntaxFix
Write A Post
Hire A Developer
Questions
Nope, you'll have to test each endpoint individually.
if ((x > 0) && (x < 10)) { // do stuff }
Or if you want it to look more "betweeny", reorder the args:
if ((0 < x) && (x < 10)) { // do stuff }