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
Are you initializing your object?
function MyObject() { this.Title = ""; this.Content = ""; } var myo1 = new MyObject();
If you do not initialize or have not set a title. You will get undefined.