I am unable to access a json value
{"phone": [
{
"@attributes": {
"type": "cell",
"ext": ""
}
}, "(123) 456 7890", {
"@attributes": {
"type": "work",
"ext": ""
}
}
]}
using the following JavaScript: psudo
for each phone line ...
console.log(["@attributes"].type);
console.log(this);
console.log(["@attributes"].ext);
... end for
I expected the following output:
cell
work (123) 456 7890