Is there something that I\'m missing that would allow item to log as an object with a parameter, but when I try to access that parameter, it\'s undefined?
What I\'ve
I think using 'find' method returns an array of Documents.I tried this and I was able to print the title
for (var i = 0; i < doc.length; i++) { console.log("iteration " + i); console.log('ID:' + docs[i]._id); console.log(docs[i].title); }