I'm working with an ng-repeat block in the code snippet below. My goal is to have the placeholder [[THE ALPHABET]]
render as a, b, c, d
representing bullets for the list in their respective order. There will always be 4 values present. What would be the most effective 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>
The desired outcome should resemble the following.
a. option 1
b. option 2
c. option 3
d. option 4