LoginSignup
1
1

More than 3 years have passed since last update.

配列と連想配列の違い

Last updated at Posted at 2020-01-14

何気なく配列を使っていましたが、連想配列と名前があることを知り、改めて調べてみました。

 基本的な配列

const test1 = [1, 2, 3, 4, 5];

スクリーンショット 2020-01-13 3.53.46.png

 連想配列(Dictionary)

キー名:値のペアによるデータ構造のことで一般的なオブジェクト構造と同じです。
配列との記法が違い、ちょっと注意が必要なのは中カッコで囲っています。

// key :  valueで構成された配列
const test2 = {
    a: 1,
    b: 2,
    c: 3,
    d: 4,
    e: 5}

スクリーンショット 2020-01-13 4.00.47.png

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