During coding, I just asked myself this question:
It's faster:
if(false) return true;
else return false;
What is this?
if(false) return true;
return false;
Of course, if there is a difference, this is ridiculous, but my curiosity will not go away until I find out that: D
Pioul source
share