How do I print out the value of category.uri
when the object is defined like this:
If i try using object[0].category.@uri
I get the following error:
Uncaught SyntaxError: Unexpected token +
And if I try without the @-sign, I get:
Uncaught TypeError: Cannot read property 'uri' of undef
Basically: how do I read the value when its prepended with an at sign? What does the at sign mean aka why is it there in the first place? (In this case I do not control the REST-API I am working against)