이제 모든 키-값 쌍을 반복하고 해당 값에 대한 콜백을 호출할 수 있는 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