I have following response reurned from an AJAX call to success function
{"0":"A",
"1":"B",
"2":"C",
"saved_as":["M","K","L"]}
Is there any way to have it in an array like following
dataObj[0]="A";
dataObj[1]="B";
dataObj[2]="C";
On a side not returned data can have more that first three elements . Last element will always be saved_as
Thanks.