My JSON
[
{
"container":
[
null,null,null,null,null
],
"type":
[
"text","text","text","text","text"
],
"role":
[
null,null,null,null,null
],
"subtype":
[
null,null,null,null,null
],
"maxlength":
[
null,null,ull,null,null
]
}
]
My Code
for(i=0; i<jsonString.length; i++){
container = jsonString[i];
console.log(container);
for(j in container){
console.log(container[j]);
}
}
Thia isn't giving me the desired result. I know there a lot of these type of question, but I have applied several of them but to no avail.Thanks for the help.