Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a simple if - else construction that operates with data grid filterind. Like this:

if (_r1 <= _r3 && _r3 <= _r2) {
   return true;
}
else {
   return false;
}

where _r1, _r2, _r3 and numbers. It has both true and false. Is it possible to rewrite this construction that it will has only for example true branch and will go to the else branch by default?

P.S. (if ... ? ... : ...) is not what I want.

share|improve this question

2 Answers

up vote 7 down vote accepted

use

 return _r1 <= _r3 && _r3 <= _r2;
share|improve this answer
if (_r1 <= _r3 && _r3 <= _r2) {
   return true;
}
return false;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.