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

[Javascript]オブジェクトを定数に代入する

Posted at

#オブジェクトを定数に代入する
定数itemにオブジェクト内の値を代入する
1512365586993.png
console.logで出力するとオブジェクト内の値をまるっと表示させる事ができる
1512365596496.png
#オブジェクトの値を取り出す
1行目は先ほどと同じようにitem定数に値を代入する
2行目でitem.nameでオブジェクト内のnameの値のみを出力する
151236560518.png
name内の文字列のみ出力させる事ができる
151236561010.png
##const
###constは定数なので上書きする事ができない。メリットとしてはコード量が多くなるほどconstで定義すれば可視化しやすい
#let
###letは変数なのでいくらでも上書きする事ができる。メリットとしては変数内の値を変えたい時に即座に変える事ができるが、本人しかわからないコードにならぬようコメントアウトしておいた方が吉
#以上!

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