I am returning a List<> from a webservice as a List of JSON objects. I am trying to use a for loop to iterate through the list and grab the values out of the properties.
Be careful, d is the list.
d
for (var i = 0; i < result.d.length; i++) { alert(result.d[i].employeename); }