-2
else条件のみをチェックしたいと思います。下のコードを単純化する方法はありますか?この論理文の反対は何ですか
if (_endCurrentGoal && _startCurrentGoal && _startCurrentGoal === _startEffectiveDate && _endCurrentGoal === _endEffectiveDate) { //no statement);
}
else {
console.log("check for this code only");
}
以下のコードは正しいですか?それを単純化する方法はありますか?
if(!(_endCurrentGoal && _startCurrentGoal && _startCurrentGoal === _startEffectiveDate && _endCurrentGoal === _endEffectiveDate) {
console.log("check for this code only");
}
はええ、それは正しいのですが、私は最初のアプローチ –
を好むだろうが、私は文の場合は、最初に確認する必要がありません。 else文を実行する必要があります – noob
悲しい、人々はちょうど私の質問をdownvote。それは私がそれを解決しようとしていないわけではありません – noob