if (some) {
return 'a'
} else if (other) {
return 'b'
} else {
return 'c'
}
or same
if (some) {
return 'a'
}
if (other) {
return 'b'
}
return 'c'
Simple get 0.289999992
Condition getIf 0.409999996
Condition getIfElse 0.410000026
Simple get 0.233629003
Condition getIf 0.292778015
Condition getIfElse 0.320569992