いくつかの質問があります (それらはほとんどばかげていると思います)...しかし、それらは質問であり、ここに投稿して議論したいと思います。
条件についてです。私はjavascriptで開発しており、いくつかの機能があり、最適なコードを書きたいと思っています。
たとえば、いくつかの条件を確認する必要があるため、次のように記述できます。
if(text == ""){
//some code for finish
}else if(text== previousText){
//some code for finish
}
//here I write more code...which runs if both conditions had not complied.
私の疑問は次のとおりです。何をするのが良いと思いますか?
ポイント1
if(text == ""){
//some code for finish
}else if(text== previousText){
//some code for finish
}else{
//here I write more code...which runs if both conditions had not complied.
}
また
ポイント2
if(text == ""){
//some code for finish using return
return;
}else if(text== previousText){
//some code for finish using return
return;
}
//here I write more code...which runs if both conditions had not complied.
うまく説明できたと思います。これらは見過ごされることもありますが、重要なことだと思います。どうもありがとう、ダニエル