2
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】const、let、varの違い <基本>

Last updated at Posted at 2021-03-06

Javascriptで変数を宣言するときに、const、let、varという宣言のためのものがある。
この違いを簡単にまとめておく。

const

constは再代入をすることができない。

const title = "ゴリラ";
title = "おさるさん";

このようにすると、エラーとなってしまう。

let

letは再代入をすることができる変数の宣言方法。

let title = "さる";
title = "ゴリラ”;
title = "さかな";
title = "やまだくん":

このように何度でも再代入ができる。

var

varは同じ名前の変数を定義し、上書きすることができる.

let title = "ゴリラ";

let title = "たろう”;

上書きされる。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?