I am getting responses like:
Do you Have Multiple locations?,yes,How many Physical locations?,4
The required format is:
[Do you Have Multiple locations?,yes],[How many Physical locations?,4],....
Can anyone recommend any suggestion?
You can create a class like,
export class MyClass{
question: string;
answer: string;
}
and then create an array of the above object as,
myList : MyClass[] = []
;
push the object to this array by,
this.myList.push(yourObject);