1
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 3 years have passed since last update.

JavaScript 変数と定数の違い

Last updated at Posted at 2021-08-05

JavaScriptの学習の備忘録と振り返りの記事です。
何かの参考になれば幸いです。
付け足しや訂正などある場合ご教授いただけると
大変嬉しく思います!!

##変数と定数の役割
・同じ値を繰り返し使えるようにする
・変更に対応しやす区する
・値の意味をわかりやすくする

変数名は自由につけられます

英単語で表記する
単語が二つ以上の場合大文字で単語を区切る

・数字開始 1number
・ローマ字 bango
・日本語 番号

##変数
一度定義した値でも上書きをすることができる。
変数の宣言
let

let me = "yuka"
consle.log(me + "です")

出力
yukaです

#####変数値の更新

me = `me + "と君"` or `me =+ "と君"` 二つ目は省略型どちらも同じ内容

後から付け足した変数値が更新内容になる。

##定数
定数は一度定義した値を変えることはできない。

変数の宣言
const

const me = "yuka"
console.log(me + "です")

出力
yukaです

1
0
1

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