I have a status field choice with multiple values. How can i get /retrieve these values via rest api
tried :
for (var i = 0; i < data.d.results.length; i++) {
alert(data.d.results[i].Status);
}
I have attached the data im getting from rest.How to get into the collection?
Thanks in Advance

data.d.results[i].Status[0]?