Struggling to retrieve the value of a JSON key, but it keeps returning empty.
Check out the code snippet below:
let json_=JSON.parse(JSON.stringify(result));
console.log(json_);
console.log(json_.tabs);
console.log(json_["tab"]);
console.log(json_['tab']);
Current output:
https://i.sstatic.net/x7lEF.png
View detailed output snapshot here: