Linking the Hash Map
The hash map is a classic and indispensable data structure in application programming. It is so ubiquitous that almost every modern language supports it either with a library, or by baking the functionality into the syntax itself. Hash maps are often implemented as an associative array.
Justin Naifeh implements the hash map concept in Javascript in this nice article over DailyJS.