I can see the stringifyed Object proberties in console log but I am getting error while printing them. The following console log works fine, and I can see all properties in console log, but if I print metadata.Age then my app crashes. My object properties looks as following in console log. {"Full_name":"John Abraham","Age":"26","Location":"Antwerpen"}
var metadata;
metadata = data["https://shakir01.net/user_metadata"];
console.log(JSON.stringify(metadata));
console.log(JSON.stringify(metadata.Age)); //Crashes