I have a function that will get a JSON array with objects. In the function I will be able to loop through the array, access a property and use that property. Like this:
var datas = [{"id":28,"Title":"Sweden"}, {"id":56,"Title":"USA"}, {"id":89,"Title":"England"}]; document.writeln(""); document.writeln("No IdTitle"); for(var i=0;i"+datas[i].id+""+datas[i].Title+""); } document.writeln("");