Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. A hash table (hash map) is a data structure used to implement an associative array, a structure that can map keys to values.
  2. In JavaScript we don’t have any built-in hash table.
  3. While many programming languages support associative arrays (hash tables or arrays with named indexes, JavaScript does not. In JavaScript arrays use numbered indexes.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement