So, I'm trying to access the contents of an object, and for me life cannot understand why I cannot. I'm starting to believe that an object does not have properties that Firebug indicates what it does. Most likely, I just do not use the correct syntax to access them.
Give the following function:
function(userData) {
console.log(userData);
console.log(userData.t_nodecontent);
}
What generates the following FireBug output for statement 1

and undefinedfor approval 2. (Note: Initially incorrectly stated, what I saw unknown)
Is there something obvious that I'm losing sight of how I try to refer to a value t_nodecontent? I am at a loss: (
Matty source
share