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

初めてのJavaScript④

Last updated at Posted at 2019-01-30

オブジェクト
配列と同じく複数のデータをまとめて管理するのに用いられる。


配列・・・[値1,値2,値3]
オブジェクト・・・{プロパティ1:値1,プロパティ2:値2}

・配列は複数の値を並べて管理するのに対して
オブジェクトはそれぞれの値にプロパティと呼ばれる名前をつけて管理する。

・オブジェクトも定数に代入することができる。

・オブジェクトの値を取り出すには、対応するプロパティ名を用いて 、
**「オブジェクト.プロパティ名」**のようにする。

・**「オブジェクト.プロパティ名 = 新しい値」**とすることで
オブジェクトの値を更新することができる。

・[{プロパティ1:値1…},{プロパティ2:値2}]という配列も作ることができる。
配列の中のオブジェクトのプロパティの値を取り出すには、
**「配列[インデックス番号].プロパティ名」**と書く。


・躓いた点
console.log(名前は${character.name} です);
と入力したい時、「`」ではなく「'」を入力しており
正しく出力できなかった。

・気づいた点
パッと見るとややこしく感じるけれど
今まで使用した要素や文を覚えていたら問題なく理解できる。


次はundefinedからです。

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?