jshashtable is a JavaScript implementation of a hash table. It associates objects ("keys") with other objects ("values"). Each key is associated with precisely one value. "Objects" here is used loosely to mean any JavaScript object or value.
A multi-key hash table for JavaScript.
Javascript implementation of a simple hash table data structure
Expirable HashTable to enable timeout-based item removal from HashTable.