Tags: #stackoverflow #if vs #ifelse
http://stackoverflow.com/questions/43202012/if-statement-vs-if-else-statement-which-is-faster
http://stackoverflow.com/questions/43202012/if-statement-vs-if-else-statement-which-is-faster
Stack Overflow
If statement vs if-else statement, which is faster?
I argued with a friend the other day about those two snippets. Which is faster and why ?
value = 5;
if (condition) {
value = 6;
}
and:
if (condition) {
value = 6;
} else {
value = 5;...
value = 5;
if (condition) {
value = 6;
}
and:
if (condition) {
value = 6;
} else {
value = 5;...