DEV Community

Discussion on: Implementing a Simple LRU Cache in JavaScript

Collapse
 
sofialevin profile image
Sofia Levin

Wow, TIL about Map objects. Great article, thanks for sharing!

Collapse
 
seanwelshbrown profile image
Sean Welsh Brown

You're very welcome! Thanks so much for reading. I only recently started learning about Map and Set objects myself, and about how they differ from standard JavaScript objects. They're super useful for certain situations like this.