2
1

More than 3 years have passed since last update.

javascripitのconstとは?

Posted at

JavaScriptにおけるconstとはなんでしょうか?

constで宣言された変数は、再代入が不可能になります。

他のプログラミング言語ではconstというキーワードはコンパイル時定数になることがほとんどですが、
JavaScriptでは単に再代入不可になるだけです。
つまり、JavaScriptにおけるconstは、他のプログラミング言語におけるfinalと同じ動きをします。
constを使うのは変数への再代入が不要な場合、あるいは再代入されたくない場合になります。

つまり、JavaScriptでは再代入が必要な場合let不必要な場合constを使用すればいいということになります。

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