Klaus Hartl wrote:
> I'm going to answer the first question (low hanging fruit)... :-) > Yes, there is a direct method, just use a for loop: > > for (var key in json) { > console.log(key); // key > console.log(json[key]); // value > } > > Maybe I didn't get the question right? I don't know why I missed this. I think at the moment I was mentally stuck on using "for each" and stuck grasping and learning direct property references. Thanks