gotofritz
Member since Apr 1, 2015
- Profile: /members/12608-gotofritz.htm
- URL: http://gotofritz.net
- Comments: 1
Recent Blog Comments By gotofritz
-
Creating Objects With A Null Prototype In Node.js
Posted on Apr 1, 2015 at 4:39 PM
In theory I like the idea of Object.create(null), but then thinking about it I never really need it. If I'm not using lodash, I only ever iterate through an object's keys with Object.keys(myObj).forEach(...) with does away with the need for filtering out ownProperties and such. But I ac... read more »