I have a js object and i'm trying to access it directly without having to do something like :
for(i in data) { obj = data[i] }
is there a better way to access this object without looping ? (i'll always have 1 result)
here is the firebug result for console.log(data) :