Hacker News new | ask | show | jobs
by jaffathecake 1814 days ago
Yeah, Map (or WeakMap if keys are objects and you don't need iteration) is much better at this kind of thing.
1 comments

Good point.

Collection types are prevalent in languages like Java, but JS devs had to use plain objects for years.

Which is why you needed to build an actual data structure to do this kind of work based off checking for against the prototype chain instead of assuming you can use tiny bits of direct JavaScript operators.