Sorry for my english,
I have following JSON literal notation.
[
{
"ktp_app": [
"hantong",
"hantong4",
"hantong2",
"hantong3"
],
"ktp_apps":[
"kun1"
]
}
]
I parsed this with eval // var tmp = eval(jsondata);
i could access first array of data which means
{"ktp_app":["hantong","hantong4","hantong2","hantong3"],"ktp_apps":["kun1"]}**
but after that, how could i access the other part of json data,. only way i could access is to use a
tmp[0]["ktp_app"] ... but i want to access without String., i want use loop so that i can access all of the data;..
thanks in advance.