I have an ng-repeat block as below, I wan't the placeholder [[THE ALPHABET]]
in code to render a, b, c, d
like bullets for the list, in respective order. I will have 4 values always. What is the best way to achieve this?
<div class="list no-image">
<label class="item item-radio" ng-repeat="a in question.answer">
[[THE ALPHABET]].
<div class="item-content">
{{ a.option }}
</div>
</label>
</div>
So the result should be something like below.
a. option 1
b. option 2
c. option 3
d. option 4