🔰associated array

data structure indexed by string.

JSconcept ⟩ associated array

🈯 synonyms: "hash", "map", "dictionary"

a data structure indexed by String.

{ name: 'Joy', age: 17 }
  • JS object is associated array.

  • Map is now a better alternative for associated arrays.

  • bracket notation [] is a dynamic way to access associated arrays.

Last updated