0
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 1 year has passed since last update.

TypeScriptのletについて

Posted at

letはTypeScript言語での変数宣言の一種です。 letを使用すると、変数のスコープをブロックレベル({}で囲まれた範囲)に限定することができます。これに対して、varを使用すると関数レベルのスコープになります。このため、letは他の変数との名前衝突を避けたり、同じ名前でも異なる値を保持することができます。また、再代入も可能です。

例えば、以下のようなコードです。

let count = 0;
count = 1;

上記のように、letで宣言された変数は再代入が可能です。

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