henrylin03 / odin-hashmap

Implement hashmap data structure using vanilla JavaScript (Node) as part of The Odin Project's "Full Stack JavaScript" course.
MIT License
0 stars 0 forks source link

build `get(key)` method to return value assigned to key #6

Closed henrylin03 closed 3 months ago

henrylin03 commented 3 months ago

get(key) takes one argument as a key and returns the value that is assigned to this key. If a key is not found, return null.

potentially helpful content:

Image

henrylin03 commented 3 months ago

complete this once #7 bug is fixed