I am currently facing a challenge in extracting complex JSON data for my Angular application. Here is an example of how the data is structured:
{
"members": [
{
"member_id": "1",
"first_name": "John",
"last_name": "Doe",
"education_and_career": "[{\"highest_education\":\"MSc\",\"occupation\":\"Lead Developer\",\"annual_income\":\"100,000 USD\"}]",
}]};
While I can easily access the member_id and first name using 'data.member_id', I'm struggling to retrieve the value of 'highest_education' within 'education_and_career'. It may seem like a simple issue, but I've hit a roadblock and would greatly appreciate any assistance you could provide.
Thank you in advance.