JSON Arrays are alomost similar to the arrays in javascript.
JSON array values must be type number, array, object, boolean and null.
JSON Arrays are alomost similar to the arrays in javascript.
JSON array values must be type number, array, object, boolean and null.
#Example
var fruitsObj = {"fruits" : ["Apple","Mango","Banana"]};
for (index in fruitsObj.fruits) {
console.log(fruitsObj.fruits[index]);
}