私の質問は変かもしれませんし、不要かもしれません。ifステートメントの条件を常に満たし、スニペット 1のように elseを省略しても害はありますか?
if (condition 1) {
// code here
if (condition 2) {
// code here
}
}
または、スニペット 2の方が優れていますか?
if (condition 1) {
// code here
if (!condition 2) {
return;
}
else {
// code here
}
}