10
0

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 5 years have passed since last update.

Switch文のインデントがきらいっ!><

Posted at

久々投稿ですが、小ネタです。

今回はNode.jsの話ですが、他の言語でもSwitch文を書いているとき

switch (value) {
    case "patternA":
        someFunctionA();
        break;
    case "patternB":
        someFunctionB();
        break;
}

ってよくやると思うんですけど、

ここ きもくないですか?

        break;
}

ここ

何がきもいってインデントです。
この例だと4spacesなインデントですが、最後だけ8spacesになっちゃうじゃないですか。

ってわけで最近はこうしてます。

switch (value) {
    case "patternA": {
        someFunctionA();
    }
    break;
    case "patternB": {
        someFunctionB();
    }
    break;
}

他の言語でも使えるかわかりませんが、スコープさえちゃんとしてればキモさからは解放されるので、僕みたいにどうしてもイヤな人はお試しあれ。

10
0
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
10
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?