配列と連想配列の違い
1903 ワード
何気なく配列を使っていましたが、連想配列と名前があることを知り、改めて調べてみました。
基本的な配列
const test1 = [1, 2, 3, 4, 5];
連想配列(Dictionary)
キー名:値のペアによるデータ構造のことで一般的なオブジェクト構造と同じです。
配列との記法が違い、ちょっと注意が必要なのは中カッコで囲っています。
// key : valueで構成された配列
const test2 = {
a: 1,
b: 2,
c: 3,
d: 4,
e: 5}
Author And Source
この問題について(配列と連想配列の違い), 我々は、より多くの情報をここで見つけました https://qiita.com/makkkiy/items/2c2dedef4f1c067cf17c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .