Ask HN: How should you actually do objects in Javascript?

4 points by zjmichen ↗ HN
Are there any really good articles or examples about the best way(s) to create and use objects in Javascript?

2 comments

[ 3.1 ms ] story [ 12.7 ms ] thread
There's a lot of special rules here, though. "Effective Javascript", in the the objects chapter is the best guide I've read to understanding JS objects. A quick tip is to implement lightweight dictionaries as literal objects to avoid prototype pollution.