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

let,constがなぜ推奨されるのか? (備忘録)

Posted at

はじめに

主に自分用にメモしている備忘録のようなものなので読みづらいと思います。:bow_tone1:

varとlet,constの違いとしてスコープの違いがある。

var
関数内はどこからでも使用可能

let,const
ブロック内のみ使用可能
となっており、予期せぬエラーを少なくするためにできるだけ範囲を限定できるとよいためletが推奨され、varは非推奨になっているらしい。

また、constでは、再代入ができない(しようとするとエラーになる)

では、どんなときにlet,constを使うのか?
let
変数を扱う時
const
定数の時
こんな感じで使用されることが多いらしいです。

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?