Hash Table and Hash Node Constructor Functions
https://subscription.packtpub.com/video/programming/9781800206878/p4/video4_2/-hash-table-and-hash-node-constructor-functions
JavaScript
function HashTable(size) {
this.buckets = Array(size);
this.numBuckets = this.buckets.length;
}
function HashNode(ket, value, next) {
this.key = key;
this.value = value;
this.next = next || null;
}
var myHT = new HashTable(30);
console.log(myHT)