1
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.

初心者JavaScriptのセミコロン『 ; 』

Last updated at Posted at 2021-10-17

##『 ; 』いつ使う?
JavaScriptを勉強していると、文末の;をどうしても忘れてしまう・・・。
というより、いつ使えばいいのかと思うときがあります。
今回は、そんなときにパッとわかるようにまとめます。
記事を調べると、「;いらない説」なども見受けますので、そこまで重要ではないかと思います。
(例えば文と文が改行されているときは省略できるなど)

##『 ; 』が必要なとき
:::note info
let
:::
:::note info
const
:::
:::note info
console.log( );
:::
:::note info
break;
:::
(注)break;とは、switch文の終了命令です。case ○○: とセットで使います

##『 ; 』が不必要なとき
:::note info
if ( ) { } else if ( ) { } else ( ) { }
:::
:::note info
while ( ) { }
:::
:::note info
for (変数定義; 条件式; 変数更新) { }
:::
:::note info
switch ( ) { }
:::

###おわりに
今後まとめながら追記していきます!

1
1
3

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
1
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?