I have a json-object, which I print to the screen (using alert()-function):
alert(object);
Here is the result:
Then I want to print the value of the id to the screen:
alert(object["id"]);
The result is this:
As you can see, the value of key "id" is not(!!!) undefined.
What the hell is going on here?!