I am calling a WCF service that is bundling the data into a List with a type String.
The data being returned from the service in json when I do a consol.log(response.d):
"ABC 100"
What I would like to do is be able to reference each value by name or index. Can I use a List object and reference the data by index/name? If so, how? If not, what are my options?
Thanks