ตอนนี้ให้เราสร้างฟังก์ชัน forEach ซึ่งจะทำให้เราสามารถวนซ้ำคู่คีย์-ค่าทั้งหมดและเรียกการเรียกกลับค่าเหล่านั้น สำหรับสิ่งนี้ เราเพียงแค่ต้องวนรอบแต่ละเชนในคอนเทนเนอร์ และเรียกการเรียกกลับของคู่คีย์และค่า
ตัวอย่าง
forEach(callback) { // For each chain this.container.forEach(elem => { // For each element in each chain call callback on KV pair elem.forEach(({ key, value }) => callback(key, value)); }); }
คุณสามารถทดสอบได้โดยใช้
ตัวอย่าง
let ht = new HashTable(); ht.put(10, 94); ht.put(20, 72); ht.put(30, 1); ht.put(21, 6); ht.put(15, 21); ht.put(32, 34); let sum = 0; // Add all the values together ht.forEach((k, v) => sum += v) console.log(sum);
ผลลัพธ์
สิ่งนี้จะให้ผลลัพธ์
228