Here is the data in JSON format
var testData = {text: '{"status":200}'};
I am attempting to extract the status
using this code:
console.log(testData.text.status);
However, it returns undefined
Could you please provide guidance on how to successfully extract the status?