0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

if文によってネストが深くならないようにするために

Posted at

「ネストが深い」というワードを最近知りました。カッコが多くなって見づらくなることをこのように言うらしいです。
if文などを多用するときに、できるだけ工夫はして見やすくしたいものです。
今回のケースは、else以降に特に処理を書かない場合に使えます。

example.js
var conditions;//条件
//普通にversion
if(conditions){
  //実行したい処理
}else{
}

//改善version
if(!conditions) return;
//実行したい処理

こうすることで、not条件のときにだけreturnして実行したい処理を動かせます。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?