Confirm delete

Hashmap

Source code: https://github.com/gofhilman/hashmap

Category:

vanilla

utility

data structure and algorithm

Language:

JavaScript

This project creates a HashMap class manually in JavaScript, which is a data structure that maps keys to values. It uses a hashing function to determine the index for storing key-value pairs in an array of linked lists. The HashMap dynamically resizes itself when the load factor exceeds a certain threshold, ensuring efficient operations.

Features