add: takes in both the key and value. This method should hash the key, and add the key and value pair to the table, handling collisions as needed. get: takes in the key and returns the value from the ...
A memory-efficiency hash table in JavaScript. Uses linked lists & chaining for collision mitigation. In the future, the hash table will have multiple versions for different languages.