Here is the JSON response I received:
{
"A":{"Option1":true,"Option2":true,"Option3":false}
"B":{"OptionX":true,"OptionY":true,"OptionZ":false}
}
I am attempting to extract the following values into a string: Option1, Option2, OptionX, OptionY
Despite my attempts, I have not been successful. Here is what I have tried:
Array.from(this.model).forEach(child => {
console.log(child, 'child name')
});