Tagged Questions
1
vote
4answers
60 views
What's the fastest way to interpret a nested javascript object attribute accessor string?
Say I have a nested object structure like:
var o = { a: { b: { c: 1 } } };
and I have a an accessor String like "a.b.c".
What's the fastest function to return the specified nested value (to any ...