I get undefined when trying to access an object while iterating through an array.
obj={
"field":"value"
};
var arr=[values];
console.log(obj.entry);//works
arr.forEach(function(entry) {
console.log(entry); //works
console.log(obj.entry); //undefined
});