Skip to content

Instantly share code, notes, and snippets.

@MichaelSitter
Last active January 14, 2018 01:23
Show Gist options
  • Save MichaelSitter/86784deaaa225e64bfe4fb6f49c987db to your computer and use it in GitHub Desktop.
Save MichaelSitter/86784deaaa225e64bfe4fb6f49c987db to your computer and use it in GitHub Desktop.
JS data structures - Hash Table
function HashTable() {
var table = {};
this.set = function (key, value) {
table[key] = value;
};
this.get = function (key) {
return table[key];
};
this.clear = function () {
table = {};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment