Here's an elegant one-liner that's 10x shorter than the other solutions:
function index(obj,i) {return obj[i]}
'a.b.etc'.split('.').reduce(index, obj)
(Not that I think eval is a bad thing, but this method doesn't use eval.)
In response to those who still are afraid of using reduce despite it being in the ECMA-262 standard (5th edition), here is a two-line recursive implementation:
function multiIndex(obj,is) { // obj,[1,2,3] -> obj[1][2][3]
return is.length ? multiIndex(obj[is[0]],is.slice(1)) : obj
}
function pathIndex(is) { // obj,'1.2.3' -> obj[1][2][3]
return multiIndex(obj,is.split('.'))
}
pathIndex('a.b.etc')
evalis evil; don't use it – mc10 Jun 18 '11 at 4:49