Fantastic library to easily get to nested properties of objects in JavaScript (github.com) 2 points by softinio 11y ago ↗ HN
[–] pablovidal85 11y ago ↗ Object.prototype.get = function(k, d){ return k.split(".").reduce(function(a, b){ return a ? b in a && a[b] || d : a }, this) }; // ({}).get('a.b.c', null) === null // ({a:{b:{c:2}}}).get('a.b.c') === 2
1 comment
[ 3.0 ms ] story [ 11.5 ms ] thread