I hate to give an answer without profiling the code myself, but given that eval is probably slow, and forEach is slower than just running through a for-loop, I would start with:
// precondtion: path is a nonempty string
function getNested(obj, path) {
var fields = path.split(".");
var result = obj;
for (var i = 0, n = fields.length; i < n; i++) {
result = result[fields[i]];
}
return result;
}
But I would test this against other approaches.
I don't think that trying to optimize away the array construction on split would be worthwhile, but this is only one thing to try if you are interested in the fastest way.
ADDENDUM
Here is a transcript so you can see it in action:
$ node
> function getNested(obj, path) {
... var fields = path.split(".");
... var result = obj;
... for (var i = 0, n = fields.length; i < n; i++) {
... result = result[fields[i]];
... }
... return result;
... }
> var o = { a: { b: { c: 1 } } };
> getNested(o, "a")
{ b: { c: 1 } }
> getNested(o, "a.b.c")
1
** ADDENDUM 2 **
So embarassing -- I forgot the var in front of result before. That might speed it up a bit!
Other things to try:
- Forget about the "optimization" with
n and just do the for-loop test with i < test.length (might be optimized away anyway)
- Replace split with
substrings and indexOfs
- Do the split with a regex
/\./ instead of a raw string "."
evaland splitting upa.b.cintotand producingo[t[0]][t[1]][t[2]]. I suspectevalis slow, though.... – Ray Toal Oct 18 '11 at 6:32