I have converted an XML document to JSON using Newtonsoft Library in .NET.
Some of the converted XML nodes have attributes, like this (once converted):
"HandID": {
  "@Room": "",
  "#text": "1"
},
In JavaScript the Hand is an object.
Question: how do I get the @room or the #text values in JavaScript?
